PhpStorm + Xdebug = 页面未加载

2022-08-30 23:47:43

首先,先有一些xdebug信息:

Xdebug installed: 2.2.0rc1
Server API: Apache 2.4 Handler Apache Lounge
Windows: yes - Compiler: MS VC9 - Architecture: x86
Zend Server: no
PHP Version: 5.4.0
Zend API nr: 220100525
PHP API nr: 20100525
Debug Build: no
Thread Safe Build: yes
Configuration File Path: C:\Windows
Configuration File: C:\Uniserver\UniServer\usr\local\php\php.ini
Extensions directory: C:\Uniserver\UniServer\usr\local\php\extensions

You're already running the latest Xdebug version

一切看起来都很好。这是我的php.ini的样子:

[Xdebug]
zend_extension=C:\Uniserver\UniServer\usr\local\php\extensions\php_xdebug-2.2.0RC1-5.4-vc9.dll
xdebug.remote_host=localhost
xdebug.remote_port=9123
xdebug.idekey=PHPSTORM
xdebug.remote_mode=req
xdebug.remote_handler=dbgp
xdebug.remote_enable=1
xdebug.remote_connect_back=0
xdebug.remote_autostart=0
xdebug.remote_log="C:\Uniserver\UniServer\usr\local\php\extensions\tmp\log.log"
xdebug.overload_var_dump=1
xdebug.trace_format=0
xdebug.show_exception_trace=0
xdebug.default_enable=0

现在,我将尝试使用PhpStorm进行调试。首先,我转到设置>PHP->服务器并添加以下内容:

Name: localhost
Host: localhost
Port: 8080
Debugger: Xdebug

(是的,我的网站在端口8080上运行,否则我会与我正在使用的其他软件发生冲突。然后,我创建一个新的运行/调试配置:

PHP Remote Debug
Name: local
Servers: localhost
Ide key(session id): PHPSTORM

我还使用此工具创建了一个启动/停止调试书签:http://www.jetbrains.com/phpstorm/marklets/index.html

好吧,一切看起来都准备好了,所以我在PhpStorm中点击了调试按钮。

我的项目的主页位于 http://localhost:8080/Project/page/Home.php,所以我导航到那里。页面将加载。我点击书签栏中的开始按钮,重新加载,页面保持空白...

当我在项目中的主.php文件上添加断点并再次重新加载时,断点被命中!我可以跨过,步入,...将显示所有值。这可以正常工作,没有任何问题。但是当我遍历所有断点,或者点击“恢复程序”并返回浏览器时,页面完全是空白的。HTML 代码如下所示:

<html><head><style type="text/css"></style></head><body></body></html>

这是怎么回事?为什么我正在调试的页面没有呈现?单步执行代码的工作原理是,所有的php和html都被执行了,但最终我的浏览器中没有显示任何内容。我计划在位于文件/Project/class/Account.php的函数上使用Xdebugger,但是如果不按主页上的按钮,我就无法到达那里。

为什么不使用你说的Xdebug代理?这能解决什么问题吗?好吧,每当我尝试设置一个时,我都会收到此错误:

Xdebug 代理:无法连接到 'localhost:9123' 上的 xdebug 代理

即使我的Xdebug代理配置是正确的:

IDE key: PHPSTORM
Host: localhost
Port: 9123

任何人都可以告诉我发生了什么事吗?我真的需要这个调试器,因为有一个函数由于某种原因无法正常工作,这让我发疯。我需要检查正在传递哪些变量以及它们发生了什么。

编辑

额外信息:当我完成单步执行所有代码时,我的调试器说:

Waiting for incoming connection with ide key 'PHPSTORM'

这可能是我的页面无法加载的原因吗?

编辑 编辑 编辑

好吧,我不仅可以点击调试按钮,还可以开始收听PHP调试连接。这也有效!我的断点被击中,我可以步入...但同样的问题仍然存在:我的网页保持空白,我的调试器在最后显示“断开连接”。问题在任何浏览器中都仍然存在。

编辑 编辑 编辑

我发现了调试时非常奇怪的其他东西......我可以很好地单步执行我的代码,直到我点击获取数据库实例的函数。数据库类如下所示:

class Database
{
    private static $instance = null;
    private static $conn;

    private function __construct()
    {
        try {
            self::$conn = new mysqli('localhost', 'root', 'root', 'database', '3308');
        } catch (Exception $ex) {
            $errorpager = new CustomPageGenerator();
            $errorpager->generateErrorPage("Connection to database failed. Please try again later.");
        }
    }

    public static function getInstance()
    {
        try {
            if (self::$instance == null) {
                self::$instance = new Database();
            }
            return self::$instance;
        } catch (Exception $ex) {
            $errorpager = new CustomPageGenerator();
            $errorpager->generateErrorPage("Connection to database failed. Please try again later.");
            return false;
        }
    }

    public function query($sql)
    {
        try {
            return self::$conn->query($sql);
        } catch (Exception $ex) {
            $errorpager = new CustomPageGenerator();
            $errorpager->generateErrorPage("Connection to database failed. Please try again later.");
            return false;
        }
    }
}

我有这种感觉,我的数据库类可能与这个问题有关...每次我点击getInstance()函数时,调试都会暂停,并且我在Google Chrome中收到net::ERR_CONNECTION_RESET错误。这可能是问题所在吗?


答案 1

此问题已在 Xdebug 2.2.0RC2 中修复。请升级。


答案 2
  • 西姆丰尼 2
  • PhpStorm 4.0.1

我已经升级到php_xdebug-2.2.1-5.4-vc9.dll这解决了问题


推荐