随笔分类 -  PHP

摘要:preg_match("/^[\x{4e00}-\x{9fa5}]+$/u",$str) 阅读全文
posted @ 2015-01-20 18:20 Craze_lee 阅读(105) 评论(0) 推荐(0)
摘要:基本结构:index.php,system文件夹和application文件夹。index.php是CI的入口文件。system文件夹,是CI的框架核心部分,开发的时候基本是不用去改动的。里面有:|--core 核心部分,包括CI的核心类,CI没运行一次,里面的文件基本都要运行一次。|--datab... 阅读全文
posted @ 2014-12-15 15:30 Craze_lee 阅读(298) 评论(0) 推荐(0)
摘要:今天出现的问题:Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of in_array_two_di... 阅读全文
posted @ 2014-10-30 19:03 Craze_lee 阅读(299) 评论(0) 推荐(0)
摘要:PHP中的内置函数采用的算法是快排。下面是PHP实现的快排 1 function quick_sort($array) { 2 if (count($array) <= 1) return $array; 3 4 $key = $array[0]; 5 ... 阅读全文
posted @ 2014-10-27 18:08 Craze_lee 阅读(178) 评论(0) 推荐(0)