随笔分类 - PHP
摘要:preg_match("/^[\x{4e00}-\x{9fa5}]+$/u",$str)
阅读全文
摘要:基本结构:index.php,system文件夹和application文件夹。index.php是CI的入口文件。system文件夹,是CI的框架核心部分,开发的时候基本是不用去改动的。里面有:|--core 核心部分,包括CI的核心类,CI没运行一次,里面的文件基本都要运行一次。|--datab...
阅读全文
摘要:今天出现的问题: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...
阅读全文
摘要:PHP中的内置函数采用的算法是快排。下面是PHP实现的快排 1 function quick_sort($array) { 2 if (count($array) <= 1) return $array; 3 4 $key = $array[0]; 5 ...
阅读全文

浙公网安备 33010602011771号