标签:position php5 技术分享 打包 tar server rate 备忘 步骤
之前一直用zend studio 9 + zend server 5.5,由于zend server 5.5 支持的php最高只能到5.3版本,为了能使用php5.5,只好换用xdebug。zendstudio 10版本之前如何配置xdebug的文章网上挺多,但是zendstudio 12版本的几乎没有,摸索了几天,整理了一份以作备忘。
首先是安装php和xdebug,最简单的办法是去下载一个 phpstudy ,php、mysql、xdebug等都打包在一起了,基本的配置都免了,装上就可以用。phpstudy安装的时候php选5.5版本,请在php.ini中确认xdebug已经配置好。
然后是安装zendstudio 12 版本,zendstudio 12 网上很多地方都能下载到,具体安装步骤和之前的版本差别不大,这里就不多说了。
第一步是创建一个thinkphp的demo项目,入口默认为index.php,非thinkphp的项目入口可以自己定。
创建好项目之后,接下来是xdebug的配置:
在zendstudio中的Window主菜单点击Preferences项,
在PHP栏下的Servers中增加一项Apache
以下是配置详情,注意这里的document root 要个apache中的配置一致。
?
在PHP栏下的debug中配置php server 为刚才配置的 Apache,类型为Xdebug,注意把“Break at First Line”勾选掉。
在General栏下的 Web Browser 下选择使用外部浏览器进行开发调试。
以上都配置好之后,转换到zend studio 的Run主菜单下 的Debug Configurations,选择PHP Web Application,创建一个新的配置项demo,server选择刚才设的Apache,File填写Thinkphp的入口文件index.php,URL勾选掉Auto Generate,这里填上我们demo项目的启动html路径 /demo/index.php/test.html,接下来是点击 Debug。
看到没有?调试界面已经调起来啦,记得不要忘了设断点喔,:)
zendstudio 12 配置 xdebug 开发 thinkphp
标签:position php5 技术分享 打包 tar server rate 备忘 步骤
原文地址:http://www.cnblogs.com/741570hh/p/6871849.html