安装phpstorm以及调试

 

1、下载phpstorm安装包,我用的是10.0.3,官网下载不下来,我是在华军软件园下的。

下载地址:http://www.onlinedown.net/softdown/556509_2.htm

 

2、安装调试工具。

其实wamp已经安装了xdebug插件,根本无需另外下载dll文件,只要进行适当的配置即可,如下:

打开php.ini,将[xdebug]部分修改成如下:

[xdebug]
xdebug.remote_enable = 1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir = "d:/wamp/tmp"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.remote_handler = "dbgp"
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port=9000
xdebug.trace_output_dir = "d:/wamp/tmp"

 

 

3、具体的配置见如下网页即可:

http://www.php-note.com/article/detail/825

 

 

主流程完。

----------------------------------------------------------------------------------------------

ps:

1、关于汉化,我看得懂,所以没有汉化。

如果有需要的话,可以参考:

http://www.sdbeta.com/xiazai/2015/1103/46400.html

 

 

2、关于注册,首先phpstorm是支持免费30天试用的,当然你也可以注册, 点击help->Register,然后选择服务器验证方式,输入以下网址即可,极其简单:http://idea.lanyus.com/

 

 

3、phpstorm字体调整:

http://www.cnblogs.com/yingsmirk/archive/2012/06/10/2543880.html

 

 

 4、对于mac 10.x版本而言,也不需要额外安装xdebug。

 

 

猜你喜欢

转载自wandejun1012.iteye.com/blog/2277482