php
文章平均质量分 78
denialyii
这个作者很懒,什么都没留下…
展开
-
利用 SPL 快速实现 Observer 设计模式
转http://www.ibm.com/developerworks/cn/opensource/os-cn-observerspl/什么是 SPLSPL(Standard PHP Library)即标准 PHP 库,是 PHP 5 在面向对象上能力提升的真实写照,它由一系列内置的类、接口和函数构成。SPL 通过加入集合,迭代器,新的异常类型,文件和数据处理类等提升了 PHP转载 2013-11-09 09:33:33 · 734 阅读 · 0 评论 -
灵活运用PHP stdClass
转http://developer.51cto.com/art/200912/167391.htm一维数组,我现在特别喜欢把它写成对象,因为键盘打起来比较顺手,看起来也顺眼,如$andy = array(); $andy['a'] = 1; $andy['b'] = 2; $andy['c'] = 3; 我喜欢把它变成这样转载 2013-11-09 09:59:02 · 626 阅读 · 0 评论 -
call_user_func函数和call_user_func_array函数
转http://www.skygq.com/2011/02/22/call_user_func%E5%87%BD%E6%95%B0%E5%92%8Ccall_user_func_array%E5%87%BD%E6%95%B0%EF%BC%88php%EF%BC%89/今天偶然的情况下在CodeIgniter的官方文档中再次看到了php中的call_user_func_array转载 2013-11-09 14:31:18 · 515 阅读 · 0 评论 -
Undefined index: argc
转:http://blog.csdn.net/feifniao/article/details/6420181Undefined index: argc 解决的办法:修改php.ini文件register_argc_argv = Onerror_reporting = E_ALL & ~E_NOTICE 重新启动所有转载 2013-11-09 17:15:22 · 1047 阅读 · 0 评论 -
php读文件和写文件
/***/public function setParaToFile($para){$json_para = json_encode($para);$file_path = Yii::app()->basePath.'/data/'.'file.txt';$handle = fopen($file_path,'w');fwrite($handle,$json_par原创 2013-08-06 11:24:52 · 794 阅读 · 0 评论 -
Strict Standards: Only variables should be passed by reference in
转http://www.cnblogs.com/wallis0922/archive/2012/12/08/2808199.html安装Ecshop首页出现报错:Only variables should be passed by referen出现下面这就话:Strict Standards: Only variables should be passed b转载 2014-01-16 16:17:22 · 747 阅读 · 0 评论