下载XDebug扩展
- 下载对应PHP版本的Xdebug
- 线程安全(TS)和非线程安全(NTS)
- 安装Xdebug扩展-php.ini
[XDebug]
xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug"
zend_extension="D:\phpStudy\php\php-7.1.7-nts-64\ext\php_xdebug-2.5.3-7.1-vc14-nts-x86_64.dll"
xdebug.idekey=PHPSTORM
xdebug.remote_port=9005
xdebug.remote_enable=on
- 配置PHPStorm
- 配置Debug
- 运行Debug
- 调试
- return 处 Step into F7 跳进去
相关阅读
详细链接 : https://www.kancloud.cn/animal/riji/317872
时间: 2024-10-05 07:25:55