我已经在 Mac 上使用 XAMPP 设置了 PHP 项目,并在那里安装了 Xdebug,但在我的 PhpStorm 上我得到:
我在网上找不到任何东西。
我的 php.ini
[xdebug] ;zend_extension=xdebug.so zend_extension=/Applications/XAMPP/xamppfiles/lib/php/extensions/no-debug-non-zts-20190902/xdebug.so xdebug.remote_enable=1 xdebug.remote_connect_back=0 xdebug.remote_handler=dbgp xdebug.remote_host=localhost xdebug.remote_port=9002 xdebug.remote_log="/mnt/log/xdebug.log" xdebug.remote_autostart=1 xdebug.idekey=phpstorm xdebug.remote_mode = req
P粉8248896502024-03-30 15:47:57
我可能会迟到,但请确保 XDebug 具有对该文件夹的写入权限,更不用说如果您使用的是 Docker。
如果是本地的,那么只是出于调查目的尝试:
chmod 777 /mnt/log/xdebug.log
但是,我宁愿选择指定一个文件夹来记录文件。
如果它在 Docker 中运行,则“chmod”实际安装的文件夹。