1. 程式人生 > >PHPStorm+XDEBUG 除錯Laravel

PHPStorm+XDEBUG 除錯Laravel

 首先輸出phpinfo();

 https://xdebug.org/wizard.php 開啟然後檢視適合你的除錯擴充套件版本 ,目前支援到php7.2 

整個頁面ctrl+a  複製進去

然後下載 擴充套件檔案 下載到 ext目錄下

 

 

 在你的php.ini末尾加上,擴充套件檔案的路徑要注意  然後重啟apache

[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 

 配置你的php環境

 

 

然後開啟 Files->Settings->Languages->PHP->Servers  新增一個環境  host 一定要填你專案的環境

 

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

 

 

 

 

然後開啟

 

 

 

 然後點選小蟲子 開啟的這個引數非常重要

 PHPStorm 監聽到了

 F8 單步除錯 F7 進步方法 Shift+F8 跳出方法 常用的了

 結束