缘故原由和问题办理
上面问题的紧张缘故原由是 Xdebug 扩展没有在你的 PHP 环境中进行配置。
找到 php.ini 文件,然后添加下面的内容。
[XDebug]zend_extension = "php_xdebug.dll"xdebug.remote_autostart = 1xdebug.profiler_append = 0xdebug.profiler_enable = 0xdebug.profiler_enable_trigger = 0xdebug.profiler_output_dir = "/xampp/tmp"xdebug.remote_enable = 1xdebug.remote_handler = "dbgp"xdebug.remote_host = "127.0.0.1"xdebug.remote_log = "/xampp/tmp/xdebug.txt"xdebug.remote_port = 9000xdebug.trace_output_dir = "/xampp/tmp"xdebug.remote_cookie_expire_time = 36000
上面的内容为你添加到本地 php.ini 中的。

完成添加后,重启 xampp 做事器。
然后访问本地的 http://localhost/dashboard/phpinfo.php 的链接,如果你能够看到有关 Xdebug 的内容的话,则解释已经配置成功了。
然后再重新校验。
如果你能看到下面的界面,则解释配置已经完成了。
显示调试的配置已经完成了。
https://www.ossez.com/t/intellij-idea-php-debug-xdebug/13889