这里我php版本使用的是5.6.27
PHP扩展及设置->PHP扩展->Xdebug打勾
然后修改php.ini
xdebug.profiler_output_dir="E:\phpstudy\PHPTutorial\tmp\xdebug" xdebug.trace_output_dir="E:\phpstudy\PHPTutorial\tmp\xdebug" zend_extension="D:\phpStudy1\PHPTutorial\php\php-5.6.27-nts\ext\php_xdebug.dll" ;这里写你自己的路径 xdebug.remote_enable=1 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.remote_port=9000 xdebug.idekey="PHPSTORM"
然后phpstorm配置
IDE key填php.ini里面设置的
添加个服务器
然后浏览器安装Xdebug helper,进去设置
在phpstorm里面下断点,并开启监听
浏览器访问一下,断点便断下来了