如何配置 Eclipse 调试以跟踪使用的类(php 文件)?
如果你想跟踪从调试方法加载的类(更具体地说是 php 类),该怎么做呢?
我使用 Xdebug,假设我们有以下示例:
一个 html 文件,其中包含一个表单,以及一个由前一个 .php 文件引用的 php 文件。
如何配置 XDEBUG 自动(无需手动插入断点)停止添加每个类(引用-使用的 php 文件)。因此,在我们的例子中,停止在 php 文件的第一行,而不在那里设置断点。
if you want to follow the classes loaded (to be more specific php classes) from a debug method, what is the way to do that.
I use Xdebug and lets say we have the following example:
One html file with a form inside it and one php file referenced by the previous .
How to config XDEBUG to automatically (without manual inserting of breakpoints) stop add every class(php file referenced-used). So in our case to stop on the first line of the php file without setting a breakpoint there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不使用 Eclipse 来运行 PHP,但是在菜单中,有 Run ->添加类加载断点,然后指定类过滤器,它适用于 Java,所以我想 PHP 也会有类似的东西。
I don't use eclipse for PHP, but in menu, there is Run -> Add class load breakpoint and then you specify class filter and it works for Java, so I suppose there will be something similar for PHP.