2014年12月24日

floor舍去法取整

摘要: $int = 0.99999999999999999;echo floor($int); // returns 1$int = 0.9999999999999999;echo floor($int); // returns 0 使用要慎重,详情见php.net 阅读全文

posted @ 2014-12-24 22:14 walter371 阅读(153) 评论(0) 推荐(0) 编辑

range,shuffle,str_shuffle

摘要: print_r(range(1,20));输出,range产生Array( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 [... 阅读全文

posted @ 2014-12-24 21:53 walter371 阅读(253) 评论(0) 推荐(0) 编辑

substr,mb_substr,iconv_substr,array_slice

摘要: 通过一个例子来看其关系/**+---------------------------------------------------------- * 字符串截取,支持中文和其他编码+----------------------------------------------------------... 阅读全文

posted @ 2014-12-24 21:24 walter371 阅读(289) 评论(0) 推荐(0) 编辑

php正则表达式判断是否为ip格式

摘要: <?php$a = '127.0.0.111';$b = preg_match("/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/",$a);var_dump($b);用双引号是因为要使用转移字符\/^ 正则开始标记$/ 正则结束标记/d 非零整数{1,3} 长度... 阅读全文

posted @ 2014-12-24 20:47 walter371 阅读(3826) 评论(0) 推荐(0) 编辑

ThinkPHP/Common/extend.php

摘要: // +----------------------------------------------------------------------// $Id$/** +----------------------------------------------------------------... 阅读全文

posted @ 2014-12-24 20:23 walter371 阅读(527) 评论(0) 推荐(0) 编辑

php protected只能被继承,不可以在实例中调用,parent::调用父类(子类函数的重载对父类的函数没有影响)

摘要: fun2(); } public function fun3(){ echo 'b3'; } public function fun4(){ echo 'b4'; parent::fun3(); }}$b = new b(); ... 阅读全文

posted @ 2014-12-24 10:17 walter371 阅读(1526) 评论(0) 推荐(0) 编辑

php中函数内使用static修饰变量

摘要: 首先理解静态变量的区别,声明一个函数test()function num(){ $a = 0; echo $a; $a++;}num();num();num();//输出000function num(){ static $a = 0; echo $a; $a++... 阅读全文

posted @ 2014-12-24 10:00 walter371 阅读(465) 评论(0) 推荐(0) 编辑

centos crontab 定时任务详解

摘要: 安装crontab:yum install crontabs说明:/sbin/service crond start //启动服务/sbin/service crond stop //关闭服务/sbin/service crond restart //重启服务/sbin/service crond ... 阅读全文

posted @ 2014-12-24 09:17 walter371 阅读(394) 评论(0) 推荐(0) 编辑

导航