随笔分类 -  PHP

在使用php过程中的经验
摘要:这里只是对xdebug性能优化(xdebug还可以结合其他ide断点调试等)简单描述下,详细的可以参考xdebug的官方站点 http://xdebug.org/xdebug是什么Xdebug是一个开放源代码的PHP程序调试器(即一个Debug工具),可以用来跟踪,调试和分析PHP程序的运行状况。(... 阅读全文
posted @ 2015-04-23 10:48 520php 阅读(487) 评论(0) 推荐(0)
摘要:200代表访问成功301 代表永久性转移302 代表临时性转移400 代表访问无效401 代表未授权403 代表禁止访问404 代表未找到文件 301和302的区别对于用户 301,302对用户来说没有区别,他们看到效果只是一个跳转,浏览器中旧的URL变成了新的URL。页面跳到了这个新的ur... 阅读全文
posted @ 2015-04-02 14:57 520php 阅读(1406) 评论(0) 推荐(0)
摘要:测试php代码的运行时间stime = microtime(true); } public function start(){ $this->stime = microtime(true); } ... 阅读全文
posted @ 2015-04-02 14:08 520php 阅读(593) 评论(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 阅读(111) 评论(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 阅读(295) 评论(0) 推荐(0)