上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: PHP中的PDO函数库详解 PDO是一个“数据库访问抽象层”,作用是统一各种数据库的访问接口,与mysql和mysqli的函数库相比,PDO让跨数据库的使用更具有亲和力;与ADODB和MDB2相比,PDO更高效。目前而言,实现“数据库抽象层”任重而道远,使用PDO这样的“数据库访问抽象层”是一个不错 阅读全文
posted @ 2016-09-09 10:37 chinalorin'blogs 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 函数: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 阅读全文
posted @ 2016-09-09 10:34 chinalorin'blogs 阅读(2651) 评论(0) 推荐(0) 编辑
摘要: php匹配邮箱正则 '/[a-z0-9&\-_.]+@[\w\-_]+([\w\-.]+)?\.[\w\-]+/is' 阅读全文
posted @ 2016-09-09 10:32 chinalorin'blogs 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 这四种方法根据不同情况使用,可以实现对文件的任何操作,下面有详细介绍。 这四种方法根据不同情况使用,可以实现对文件的任何操作,下面有详细介绍。 1.把整个文件读入一个字符串中 file_get_contents(); 2.把整个文件读入一个数组中,一行就是一个数组元素 file(); 3.读取文件若 阅读全文
posted @ 2016-09-09 10:30 chinalorin'blogs 阅读(566) 评论(0) 推荐(0) 编辑
摘要: memory_get_usage()可以查看当前php使用的内存大小。对于优化算法提高内存使用效率还是很实用的,尤其是对当下的移动端程序。 memory_get_usage()可以查看当前php使用的内存大小。对于优化算法提高内存使用效率还是很实用的,尤其是对当下的移动端程序。 <?php echo 阅读全文
posted @ 2016-09-09 10:28 chinalorin'blogs 阅读(595) 评论(0) 推荐(0) 编辑
摘要: /** * 判断是否为合法的身份证号码 * @param $mobile * @return int */ function isCreditNo($vStr){ $vCity = array( '11','12','13','14','15','21','22', '23','31','32',' 阅读全文
posted @ 2016-09-09 10:26 chinalorin'blogs 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 首先去七牛云官网下载phpSDK工具放在Think/library/Vendor下。 ueditor后台调用方法: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 /** * 上传文件 * @param */ public function UploadSo 阅读全文
posted @ 2016-09-09 10:05 chinalorin'blogs 阅读(1629) 评论(0) 推荐(0) 编辑
摘要: I('post.email','','email'); int boolean float validate_regexp validate_url validate_email validate_ip string stripped encoded special_chars unsafe_raw 阅读全文
posted @ 2016-09-09 10:03 chinalorin'blogs 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: 如下示例: $_where 和 $where组合查询 $_where之间用OR $where之间用AND 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 $ 阅读全文
posted @ 2016-09-09 10:01 chinalorin'blogs 阅读(241) 评论(0) 推荐(0) 编辑
摘要: ThinkPHP 图片处理函数,需要文字水印字体,可在windows下 控制面板 > 大图标(右上角) > 字体 找到需要的字体 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 3 阅读全文
posted @ 2016-09-09 10:00 chinalorin'blogs 阅读(1874) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页