摘要: 200代表访问成功301 代表永久性转移302 代表临时性转移400 代表访问无效401 代表未授权403 代表禁止访问404 代表未找到文件 301和302的区别对于用户 301,302对用户来说没有区别,他们看到效果只是一个跳转,浏览器中旧的URL变成了新的URL。页面跳到了这个新的ur... 阅读全文
posted @ 2015-04-02 14:57 520php 阅读(1359) 评论(0) 推荐(0) 编辑
摘要: 测试php代码的运行时间stime = microtime(true); } public function start(){ $this->stime = microtime(true); } ... 阅读全文
posted @ 2015-04-02 14:08 520php 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 安装php扩展pho_mysql错误信息: checking for mysql_config... not found configure: error: Unable to find your mysql installation解决方法: 这个错误是由于在编译的时候指定了 ‘ --with-p... 阅读全文
posted @ 2015-04-02 13:50 520php 阅读(578) 评论(0) 推荐(0) 编辑
摘要: PHP求某一天,上周,上月等等的方式上一周的时间:date('Y-m-d',strtotime('-1 week'));上周五(上周几):dete('Y-m-d',strtotime('-1 Friday'));某一天的前一天:date('Y-m-d',strtotime('-1 day 2014-... 阅读全文
posted @ 2015-04-02 13:46 520php 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 借用多字节字符串函数function my_reverse($str=null){ $encode = mb_detect_encoding($str); for($i = 0 ; $i < mb_strlen($str,$encode) ; $i++) { ... 阅读全文
posted @ 2015-04-02 13:24 520php 阅读(285) 评论(0) 推荐(0) 编辑