1. 文件复制
bool copy (string $source , string $dest ) PHP 4, PHP 5)
header("content-type:text/html;charset=utf-8");
$source_path = "index.php";
$dest_path = "copy_content.php"...
分类:
Web程序 时间:
2014-06-15 14:32:14
阅读次数:
207
1.upload_file.php
//该文件负责获取上传的图片的扩展名和随机生成文件名
header("content-type:text/html;charset=utf-8");
/**
* 获取文件扩展名
*Enter description here ...
* @param unknown...
分类:
Web程序 时间:
2014-06-15 13:32:41
阅读次数:
242
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace Com.LingHu.D...
分类:
数据库 时间:
2014-06-14 17:25:40
阅读次数:
219
对于前端工程师来讲,写一个html页面的基本结构是体力活,每次去拷贝一个也麻烦,sublime text 2 提供了一个很好的复用代码片段。下面介绍一下创建一个html5的代码片段的过程。在菜单上点击Tools -> New Snippet,会新建一个xml文件页签: hell...
分类:
其他好文 时间:
2014-06-14 17:12:23
阅读次数:
284
1602 字符型(字符型的模组) 只能显示数字与字符,不可以显示汉字12864 点阵型(图形型的模组) 可根据需求任意显示字符 数字 汉字 图形1602 为16字乘2行12864 为128列点阵乘64行点阵
分类:
其他好文 时间:
2014-06-14 17:10:19
阅读次数:
178
初用sublime text 2,还不错,不装任何插件,能很好的编辑javascript,css,html,很赞。整理一下快捷键:常用的比如Ctrl+S就不列了:而且只列举Windows的。Ctrl+W 关闭当前页签,很通用。Ctrl+Shift+W关闭所有页签,估计能猜到。Ctrl+Shift+v...
分类:
其他好文 时间:
2014-06-14 17:04:09
阅读次数:
264
XML环绕发光Flash文字特效代码 flashden源码素材,文字特效 flash 发光 环绕发光 flash特效 glow blur transition button text effect intro Christmas Noel Xmas New Year banner1.您可以通过XML...
分类:
其他好文 时间:
2014-06-14 16:46:33
阅读次数:
230
未改偏移量之前
using (FileStream fs = new FileStream(txtFilePathRead.Text, FileMode.Open))
{
//创建一个容量4M的数组
byte[] byteData = new byte[1024 * 1024 * 4];...
分类:
其他好文 时间:
2014-06-14 14:13:27
阅读次数:
216
在linux服务器上,经常要定位网络问题,就需要用到抓包。
例如:tcpdump -X -s 0 host 10.17.81.22 and port 9999 -w /home/text.cap -i eth4
上面的意思是抓取和 10.17.81.22 服务器 端口9999进行通讯的所有(-X)不限制大小(-s 0)的网络包,并输出到文件 text.cap ,抓取网...
分类:
系统相关 时间:
2014-06-14 12:57:36
阅读次数:
343
//读文件
private void readBtn_Click(object sender, EventArgs e)
{
try
{
if (pathTxt.Text == "")
{
MessageBox.S...