php
chen_aa
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
create_function 创建匿名函数
$av = array("one", "two"); array_walk($av, create_function('&$val,$key', '$val = $val. "==".$key;')); print_r($av); 输出结果 Array ( [0] => one==0 [1] => two==1 )原创 2014-07-10 10:56:27 · 773 阅读 · 0 评论 -
xdebug安装
https://github.com/derickr/xdebug tar zxvf xdebug-master.zip yum install -y unzip zip unzip xdebug-master.zip cd xdebug-master /usr/local/php/bin/phpize ./configure --enable-xdebug --with-php-c原创 2014-09-02 15:39:33 · 303 阅读 · 0 评论
分享