摘要: 来源:http://blog.nosqlfan.com/html/2942.html长生剑、孔雀翎、碧玉刀、多情环、离别钩、霸王枪、拳头是古龙笔下的七种武器,而本文打算将Redis的几种使用方式Strings、Hashs、Lists、Sets、Sorted Sets、Pub/Sub、Transact... 阅读全文
posted @ 2013-11-27 21:57 Martin2 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 来源 :http://www.songyue198.com/918.html按照网上的方法编译安装了php的apc扩展,phpinfo也显示了这个模块的信息,但是在框架里还是无法启动,查看php的错误日志发现许多下面类似的信息require(): 1. h->opened_path=[null] h... 阅读全文
posted @ 2013-11-27 21:54 Martin2 阅读(566) 评论(0) 推荐(0) 编辑
摘要: mac 升级到mavericks 安装php扩展现以下问题 grep: /usr/include/php/main/php.h: No such file or directorygrep: /usr/include/php/Zend/zend_modules.h: No such file or directorygrep: /usr/include/php/Zend/zend_extensions.h: No such file or directory Configuring for: PHP Api Version: Zend Module Api No: Zend Extension 阅读全文
posted @ 2013-11-27 21:47 Martin2 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 编译安装ctags下载地址:http://ctags.sourceforge.net/下载文件:ctags-5.8.tar.gz解压ctags:tar -zxcf ctags-5.8.tar.gz进入ctags:cd ctags-5.8打上PHP5补丁:wgethttp://svn.bitflux.ch/repos/public/misc/ctags-php5.patchpatch php.c ctags-php5.patch编译安装:./configuremakesudo make install经过这三步后就生成/usr/local/bin/ctags使用ctags在相应的源码目录运行ct 阅读全文
posted @ 2013-11-27 21:40 Martin2 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: 来源:http://blog.163.com/lgh_2002/blog/static/44017526200991491945765/也 许有经验的PHP程序员最感到痛苦的地方是PHP的解释运行机制。这种运行机制使得每个PHP页面被解释执行后,所有的相关资源都会被回收。也就是 说,PHP在语言级别... 阅读全文
posted @ 2013-11-27 21:33 Martin2 阅读(1628) 评论(0) 推荐(0) 编辑
摘要: 我们先假设业务场景,是需要有这么一个扩展,提供一个叫ccvita_string的函数,他的主要作用是返回一段字符。(这个业务场景实在太假,大家就这么看看吧)对应的PHP代码可能是这样:function ccvita_string($str){ $result = 'Link'; re... 阅读全文
posted @ 2013-11-27 21:17 Martin2 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 一、安装mysqlbrew install mysql二、开机启动mysqlbrew info mysql根据提示,设置开机启动三、设置mysql开启和停止命令alias mysql-stop='launchctl unload ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist'alias mysql-start='launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist' 阅读全文
posted @ 2013-11-27 20:41 Martin2 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 作者: JeremyWei | 可以转载, 但必须以超链接形式标明文章原始出处和作者信息及版权声明网址: http://weizhifeng.net/manage-php-dependency-with-composer.html介绍Composer是PHP中的一个依赖管理工具. 它可以让你声明自己... 阅读全文
posted @ 2013-11-27 20:33 Martin2 阅读(270) 评论(0) 推荐(0) 编辑