编程语言
首页 > 编程语言> > mac php73 配置xdebug问题记录

mac php73 配置xdebug问题记录

作者:互联网

安装过程不再描述,网上很多。

php版本7.3.29

xdebug版本 3.1.4

 

php.ini中xdebug配置项要注意zend_extension 而不是extension

[xdebug]
zend_extension="/usr/local/Cellar/php@7.3/7.3.29_1/pecl/20180731/xdebug.so" xdebug.mode=debug xdebug.start_with_request=yes xdebug.discover_client_host=On ;xdebug.remote_handler=dbgp xdebug.collect_return=On ;xdebug.remote_mode=req xdebug.client_host=127.0.0.1 xdebug.client_port=9100 xdebug.idekey=afei

 不同版本xdebug配置项不同,比如我之前找的低版本配置项,启动php时会有警告。

 

启动远程监听时,先启动ide(vscode)的xdebug监听,再启动远程的fpm(我使用的php artisan serve和php -S),否则出现提示,导致远程调试失败。

 

标签:xdebug,extension,php73,7.3,mac,client,php,远程
来源: https://www.cnblogs.com/kala00k/p/16218080.html