PHPStorm+XDEBUG 調試Laravel

 首先輸出phpinfo();php

 https://xdebug.org/wizard.php 打開而後查看適合你的調試擴展版本 ,目前支持到php7.2 apache

整個頁面ctrl+a  複製進去php7

而後下載 擴展文件 下載到 ext目錄下ide

 

 

 在你的php.ini末尾加上,擴展文件的路徑要注意  而後重啓apacheurl

[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 spa

 配置你的php環境.net

 

 

而後打開 Files->Settings->Languages->PHP->Servers  添加一個環境  host 必定要填你項目的環境debug

 

  Files->Settings->Languages->PHP->Debug3d

 

 

 

 

而後打開調試

 

 

 

 而後點擊小蟲子 打開的這個參數很是重要

 PHPStorm 監聽到了

 F8 單步調試 F7 進步方法 Shift+F8 跳出方法 經常使用的了

 結束

相關文章
相關標籤/搜索