Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚安装了用于 php 调试的 Windows SDK。但是现在我对为其设置哪些库感到有些困惑。我去了https://wiki.php.net/internals/windows/libs但有很多,这个问题对我来说不清楚......我只想做一个普通的调试,比如看看哪些方法是在脚本执行时调用等。有人可以给我一个建议吗?
您链接的页面讨论了从头开始编译 PHP所需的库。它不讨论您感兴趣的事情,即:
我只想做一个普通的调试,比如观察脚本执行时调用了哪些方法等
为此,您只需要xdebug,它甚至为您提供预编译的二进制文件。您还需要一个支持 DBGp的 IDE,这是一种由许多调试包和 IDE 使用的调试协议。
我发现 xDebug 最适合我。它有助于跟踪您的代码等等。我使用PhpStorm作为我的 IDE。只需在您的 PhpStorm 中配置xDebug。