最新最全最详细图文 phpstorm安装步骤以及xdebug phpstorm调试

phpstorm安装步骤以及xdebug phpstorm调试
 

打开你的hosts文件,加上 

进入网站 http://idea.lanyus.com/ 获取注册码。

phpstorm 汉化

下载汉化包

https://download.csdn.net/my

把这个压缩包直接放到 phpstorm安装目录lib下

关掉phpstorm 重新打开  就汉化成功了

接下来就是配置phpstorm了

host 填写本地域名 127.0.0.1  或 自己创建的域名

配置xdebug

php.ini

[XDebug]
xdebug.profiler_output_dir="D:\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="D:\phpStudy\PHPTutorial\tmp\xdebug"
zend_extension="D:\phpStudy\PHPTutorial\php\php-5.6.27-nts\ext\php_xdebug.dll"

xdebug.remote_enable = On

xdebug.remote_host="127.0.0.1"

xdebug.remote_port=9001

xdebug.remote_handler=dbgp

xdebug.idekey="PHPSTORM"

xdebug.profiler_enable = off

xdebug.profiler_enable_trigger = off

xdebug.profiler_output_name = cachegrind.out.%t.%p

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

猜你喜欢

转载自blog.csdn.net/a8240357/article/details/84567632