PHP的debug 工具肯定是要选xdebug了,xdebug可以完美配合phpstorm 和vscode
安装
很简单,xdebug官方提供wizard
https://xdebug.org/wizard
现在基本都是安装3.*
Wizard 会帮你配置好xdebug在php中的ini文件,对于大多数人来讲可以使用下面的配置文件
zend_extension = xdebug xdebug.mode = debug,develop,profile xdebug.start_with_request = trigger
在xdebug 3.0中,port默认是9003