php
感性的烦恼
这个作者很懒,什么都没留下…
展开
-
40个迹象表明你还是PHP菜鸟
你是PHP菜鸟,如果你:1. 不会利用如phpDoc这样的工具来恰当地注释你的代码2. 对优秀的集成开发环境如Zend Studio或Eclipse PDT视而不见3. 从未用过任何形式的版本控制系统,如Subclipse4. 不采用某种编码与命名标准,以及通用约定,不能在项目开发周期里贯彻落实5. 不使用统一开发方式6. 不转换(或)也不验证某些输入或SQL查询串(译转载 2014-07-21 12:09:39 · 437 阅读 · 0 评论 -
解决dedecms5.6后台登录空白问题
将项目中 include中userlogin.class.php 文件中 方法原创 2014-07-21 15:55:18 · 1606 阅读 · 0 评论 -
PHP unset销毁变量并释放内存
PHP unset销毁变量并释放内存PHP的unset()函数用来清除、销毁变量,不用的变量,我们可以用unset()将它销毁。但是某些时候,用unset()却无法达到销毁变量占用的内存!我们先看一个例子:$s=str_repeat('1',255);//产生由255个1组成的字符串 $m=memory_get_usage(); //获取当前占用内存 unset($s);$转载 2014-08-04 15:17:43 · 614 阅读 · 0 评论 -
php-mysql扩展
这几天学习linux知识,从搭环境开始,原创 2014-07-29 16:35:34 · 685 阅读 · 0 评论 -
Maximum execution time of 30 seconds exceeded
Maximum execution time of 30 seconds exceeded 字面意思:字面上就可以理解“最大执行时间超过30秒”原创 2014-08-05 12:54:45 · 684 阅读 · 0 评论 -
mb_strwidth与mb_strlen的区别
$ test = "123中文测试";字符数$ mb_strlen($ test,'GBK');7$ mb_strlen($ test,‘UTF-8');7字节数$ mb_strwidth($ test,'GBK');11$ mb_strwidth($ test,'UTF-8');4$ mb_strwidth($ test);11原创 2014-09-05 11:08:22 · 1761 阅读 · 1 评论 -
php in_arry() 用法
1(in_array($file_name_array[0],array('1','2','3','4','5','7','8','9')))原创 2014-08-15 13:32:46 · 830 阅读 · 0 评论 -
file_get_contents与curl的比较
以前在读取远程文件的时候,我一直喜欢使用file_get_contents,原因是在PHP的手册里面介绍读取文件内容的时候,首选此函数。但是现在发现,如果是远程文件,curl才是首选。file_get_contents用来读取本地文件才是首选。 首先说性能,下面在一个在国外网站上看到的二者的读取google.com首页的测试: Fetching google.com usi转载 2015-06-05 10:26:01 · 1071 阅读 · 0 评论