PHPStorm+XDEBUG 调试Laravel

时间:2023-03-09 12:59:29
PHPStorm+XDEBUG 调试Laravel

首先输出phpinfo();

https://xdebug.org/wizard.php 打开然后查看适合你的调试扩展版本 ,目前支持到php7.2

整个页面ctrl+a  复制进去

PHPStorm+XDEBUG 调试Laravel

然后下载 扩展文件 下载到 ext目录下

PHPStorm+XDEBUG 调试Laravel

在你的php.ini末尾加上,扩展文件的路径要注意  然后重启apache

[Debug]
zend_extension = C:\Code\XAMPP\php\ext\php_xdebug-2.6.-7.2-vc15.dll
xdebug.remote_enable = On
xdebug.profiler_enable = On
xdebug.profiler_enable_trigger = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="C:/wamp64/tmp"
xdebug.show_local_vars= xdebug.var_display_max_children=
xdebug.var_display_max_data=
xdebug.var_display_max_depth= xdebug.idekey=PhpStorm
xdebug.remote_enable = On
xdebug.remote_host=127.0.0.1
xdebug.remote_port=
xdebug.remote_handler=dbgp

打开phpstrom

配置你的php环境

PHPStorm+XDEBUG 调试Laravel

PHPStorm+XDEBUG 调试Laravel

然后打开 Files->Settings->Languages->PHP->Servers  添加一个环境  host 一定要填你项目的环境

PHPStorm+XDEBUG 调试Laravel

Files->Settings->Languages->PHP->Debug

PHPStorm+XDEBUG 调试Laravel

PHPStorm+XDEBUG 调试Laravel

然后打开

PHPStorm+XDEBUG 调试Laravel

PHPStorm+XDEBUG 调试Laravel

PHPStorm+XDEBUG 调试Laravel

然后点击小虫子 打开的这个参数非常重要

PHPStorm+XDEBUG 调试Laravel

PHPStorm 监听到了

PHPStorm+XDEBUG 调试Laravel

F8 单步调试 F7 进步方法 Shift+F8 跳出方法 常用的了

PHPStorm+XDEBUG 调试Laravel

结束

PHPStorm+XDEBUG 调试Laravel