PHPStorm+XDEBUG 调试Laravel

 首先输出phpinfo();php

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

整个页面ctrl+a  复制进去php7

而后下载 扩展文件 下载到 ext目录下ide

 

 

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

[Debug] zend_extension = C:\Code\XAMPP\php\ext\php_xdebug-2.6.1-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=0 xdebug.var_display_max_children=128 xdebug.var_display_max_data=512 xdebug.var_display_max_depth=5 xdebug.idekey=PhpStorm xdebug.remote_enable = On xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp

 

 打开phpstrom debug

 配置你的php环境调试

 

 

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

 

  Files->Settings->Languages->PHP->Debugorm

 

 

 

 

而后打开blog

 

 

 

 而后点击小虫子 打开的这个参数很是重要

 PHPStorm 监听到了

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

 结束