上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 40 下一页
摘要: <?php header("content-type:text/html;charset=utf-8"); $fp = fopen("lock.txt","w+"); if(flock($fp, LOCK_EX)){// 进行排它型锁定 fwrite($fp,"Write something her 阅读全文
posted @ 2016-02-01 15:08 侠岚之弋痕夕 阅读(776) 评论(0) 推荐(0) 编辑
摘要: 一、数组操作的基本函数 array_values($arr); //获得数组的值 array_keys($arr); //获得数组的键名 array_flip($arr); //数组中的值与键名互换(如果有重复前面的会被后面的覆盖) array_search('PHP',$arr); //检索给定的 阅读全文
posted @ 2016-02-01 15:00 侠岚之弋痕夕 阅读(246) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); function get_ext1($filename) { return strrchr($filename,'.'); } function get_ext2($filename){ re 阅读全文
posted @ 2016-02-01 14:04 侠岚之弋痕夕 阅读(594) 评论(0) 推荐(0) 编辑
摘要: ob_get_contents() - 返回输出缓冲区的内容 ob_flush() - 冲刷出(送出)输出缓冲区中的内容 ob_clean() - 清空(擦掉)输出缓冲区 ob_end_flush() - 冲刷出(送出)输出缓冲区内容并关闭缓冲 ob_end_clean() - 清空(擦除)缓冲区并 阅读全文
posted @ 2016-02-01 13:56 侠岚之弋痕夕 阅读(307) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); $str = "aaaa bbbb cccc dddd"; echo $str; echo '<br/>'; echo nl2br($str); echo '<br/>'; $str_a = 阅读全文
posted @ 2016-02-01 10:44 侠岚之弋痕夕 阅读(179) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); function GrabImage($url,$filename="") { if($url=="") return false; if($filename=="") { $ext=strr 阅读全文
posted @ 2016-02-01 10:23 侠岚之弋痕夕 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 方法一: <?php header("content-type:text/html;charset=utf-8"); //指定图片路径 $src = "img/a.png"; //获取图片信息 $info = getimagesize($src); //获取图片扩展名 $type = image_t 阅读全文
posted @ 2016-02-01 10:14 侠岚之弋痕夕 阅读(548) 评论(0) 推荐(0) 编辑
摘要: <?php // header("content-type:text/html;charset=utf-8"); /** * 功能:php生成缩略图片的类 */ class ResizeImage{ public $type;//图片类型 public $width;//实际宽度 public $h 阅读全文
posted @ 2016-01-31 17:21 侠岚之弋痕夕 阅读(171) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2016-01-31 17:18 侠岚之弋痕夕 阅读(311) 评论(0) 推荐(0) 编辑
摘要: getimagesize() 函数用于获取图像大小及相关信息,成功返回一个数组,失败则返回 FALSE 并产生一条 E_WARNING 级的错误信息。 语法:array getimagesize(string filename). <?php header("content-type:text/ht 阅读全文
posted @ 2016-01-31 16:42 侠岚之弋痕夕 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 最近在开发一个PHP程序时遇到了下面的错误:PHP Fatal error: Allowed memory size of 268 435 456 bytes exhausted错误信息显...分析:开发的这个程序是要用一个foreach循环语句在一个有10万条记录的表里全表搜索具有特定特征的数据, 阅读全文
posted @ 2016-01-31 13:44 侠岚之弋痕夕 阅读(927) 评论(0) 推荐(0) 编辑
摘要: 1.配置文件:connect.php <?php $host="localhost"; $db_user="root"; $db_pass="root"; $db_name="wh"; $timezone="Asia/Shanghai"; $link=mysql_connect($host,$db_ 阅读全文
posted @ 2016-01-31 09:41 侠岚之弋痕夕 阅读(5561) 评论(0) 推荐(0) 编辑
摘要: 1、redis简介redis是一个key-value存储系统。和Memcached类似,它支持存 储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hashs(哈希类型)。这些数据类型都支持push/pop、ad 阅读全文
posted @ 2016-01-29 16:17 侠岚之弋痕夕 阅读(169) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-01-29 10:02 侠岚之弋痕夕 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 1、在元素内部追加内容 $("元素名").append(content) 2、在元素中的不同位置追加内容 $("元素名").appendTo(content) 3、在元素的开始位置追加内容 $("元素名").prepend(content) 4、在不同元素的开始位置追加元素 $("元素名").pre 阅读全文
posted @ 2016-01-29 09:57 侠岚之弋痕夕 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 40 下一页
Where is the starting point, we don't have a choice, but the destination where we can pursue!