随笔分类 -  PHP

php函数,php技巧
摘要:今天在写代码时,看到以前的同时写了一个取随机数,用到了mt_rand(2,19)就顺手搜了一下,mt_rand和rand的区别。先看官方的解释mt_rand 和 randmt_rand—生成更好的随机数rand—产生一个随机整数其实两个函数的功能是没有区别的,都是生成一个随机数字。从网上拷贝了一个例... 阅读全文
posted @ 2015-09-15 18:29 KoMiles 阅读(1901) 评论(0) 推荐(0) 编辑
摘要:下面是从其他博客看到的代码setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $dbh->exec('set names utf8'); /*添加*///$sql = "INSERT INTO `user` SET `login`=:l... 阅读全文
posted @ 2015-08-30 01:46 KoMiles 阅读(2317) 评论(1) 推荐(0) 编辑
摘要:转自鸟哥的博客:http://www.laruence.com/2007/12/16/308.htmlPHP header()the function declaration: void header ( string string [, bool replace [, int http_respo... 阅读全文
posted @ 2015-07-17 13:48 KoMiles 阅读(276) 评论(0) 推荐(0) 编辑
摘要:我本机的环境配置linuxMint17.1php5.5nginx1.4.6下面开始安装下载最新的yaf包http://pecl.php.net/package/yaf我下载的最新版本为2.3.3解压 $PHP_BIN/phpize ./configure --with-php-conf... 阅读全文
posted @ 2015-06-10 00:20 KoMiles 阅读(5057) 评论(0) 推荐(0) 编辑
摘要:转自:http://blog.csdn.net/hguisu/article/details/7386882http://www.phpernote.com/news/723.htmlhttp://php.net/manual/zh/features.commandline.phphttp://ol... 阅读全文
posted @ 2015-06-01 18:33 KoMiles 阅读(336) 评论(0) 推荐(0) 编辑
摘要:转自:http://benchmarks.ro/2011/02/str_replace-vs-preg_replace/事实证明str_replace确实比preg_replace快。If you find yourself handling strings and replacing sub-st... 阅读全文
posted @ 2015-05-27 17:51 KoMiles 阅读(748) 评论(0) 推荐(0) 编辑
摘要:将var/Typecho/Common.php中的第939行中的http://www.gravatar.com/中的www.给去掉即可!//修改前$url = $isSecure ? 'https://secure.gravatar.com' : 'http://www.gravatar.com';... 阅读全文
posted @ 2015-05-24 18:12 KoMiles 阅读(479) 评论(0) 推荐(0) 编辑
摘要:附一些常用的正则运算:验证数字:^[0-9]*$验证n位的数字:^\d{n}$验证至少n位数字:^\d{n,}$验证m-n位的数字:^\d{m,n}$验证零和非零开头的数字:^(0|[1-9][0-9]*)$验证有两位小数的正实数:^[0-9]+(.[0-9]{2})?$验证有1-3位小数的正实数:... 阅读全文
posted @ 2015-05-21 18:06 KoMiles 阅读(339) 评论(0) 推荐(0) 编辑
摘要:json_decode 函数 url地址:http://php.net/manual/en/function.json-decode.php json_decode (PHP 5 >= 5.2.0, PECL json >= 1.2.0) json_decode — 对 JSON 格式的字符串进行解 阅读全文
posted @ 2015-04-13 11:42 KoMiles 阅读(7265) 评论(1) 推荐(0) 编辑
摘要:spl_autoload_register—注册给定的函数作为 __autoload 的实现官方地址:http://php.net/manual/zh/function.spl-autoload-register.php我的测试定义三个文件test.php test1.php test2.phpte... 阅读全文
posted @ 2015-03-08 22:39 KoMiles 阅读(399) 评论(0) 推荐(0) 编辑
摘要:文章转自:http://wulijun.github.io/2013/07/17/whats-new-in-php-5-5.html http://www.cnblogs.com/yjf512/p/3164400.html生成器(Generators)生成器是其中最令人期待的一个新特性,它使... 阅读全文
posted @ 2015-03-08 09:19 KoMiles 阅读(1079) 评论(0) 推荐(0) 编辑
摘要:html页面测试ssi测试ssi头部页体尾部在php_app.conf文件中添加rewrite_log on;location / {# try_files $uri $uri/ /missing.html;# ssi on;# ssi_silen... 阅读全文
posted @ 2015-01-28 09:15 KoMiles 阅读(823) 评论(0) 推荐(0) 编辑
摘要://判断传入的字符是否是utf-8function is_utf8($word){if (preg_match("/^([".chr(228)."-".chr(233)."]{1}[".chr(128)."-".chr(191)."]{1}[".chr(128)."-".chr(191)."]{1}... 阅读全文
posted @ 2014-12-02 15:17 KoMiles 阅读(1138) 评论(0) 推荐(0) 编辑
摘要:在用PHP5.3以上的PHP版本时,只要是涉及时间的会报一个Warning: phpinfo() [function.phpinfo]: It is not safe to rely on the system's timezone settings. You are *required* to u... 阅读全文
posted @ 2014-11-27 10:48 KoMiles 阅读(302) 评论(0) 推荐(0) 编辑
摘要:log_format main '$remote_addr - $remote_user [$time_local] $request ' '"$status" $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http... 阅读全文
posted @ 2014-11-26 18:13 KoMiles 阅读(300) 评论(0) 推荐(0) 编辑
摘要:http://blog.csdn.net/xiaolei1982/article/details/71038501,查看php-cgi的进程数netstat -anpo | grep "php-cgi" | wc -l2,运行php-cgiphp-cgi -b 127.0.0.1:9000 阅读全文
posted @ 2014-11-26 17:13 KoMiles 阅读(688) 评论(0) 推荐(0) 编辑
摘要:转自:http://www.phpstudy.net/php/165.htmlPHP array_fill 用给定的值填充数组array_fill(PHP 4 >= 4.2.0, PHP 5)array_fill—用给定的值填充数组说明arrayarray_fill(int$start_index,... 阅读全文
posted @ 2014-11-23 15:13 KoMiles 阅读(5094) 评论(0) 推荐(0) 编辑
摘要:转自:http://www.tsingpost.com/articles/201401/347.html1.尽量静态化:如果一个方法能被静态,那就声明它为静态的,速度可提高1/4,甚至我测试的时候,这个提高了近三倍。当然了,这个测试方法需要在十万级以上次执行,效果才明显。其实静态方法和非静态方法的效... 阅读全文
posted @ 2014-11-21 16:35 KoMiles 阅读(556) 评论(0) 推荐(0) 编辑
摘要:转自:http://www.jb51.net/article/26604.htm今天项目中用到,去掉字符串中的最后一个字符原字符串1,2,3,4,5,6,去掉最后一个字符",",最终结果为1,2,3,4,5,6代码如下:复制代码代码如下:$str = "1,2,3,4,5,6,";$newstr =... 阅读全文
posted @ 2014-11-17 15:01 KoMiles 阅读(8966) 评论(0) 推荐(1) 编辑
摘要:转自:http://www.tianzhigang.com/article.asp?id=280PHP的数据类型转换属于强制转换,允许转换的PHP数据类型有:(int)、(integer):转换成整形(float)、(double)、(real):转换成浮点型(string):转换成字符串(bool... 阅读全文
posted @ 2014-10-27 17:46 KoMiles 阅读(158920) 评论(0) 推荐(5) 编辑