PHP ZF:我无法调试我的 IndexController.php 操作代码
我是 php 新手,我正在使用 xampp、eclipse pdt、xdebug。我已经设置了 xdebug,以便我可以在 apache 上调试我的站点,但是当我在 eclipse ide 中单击“作为网页调试”时,只有 public/index.php 和视图中的断点被命中。如果我在这里放置断点,
public function indexAction()
{
// action body
$this->view->s = "deam";
}
调试器不会停止?!这是为什么?我无法调试应用程序中最重要的部分。 :( 请帮我解决这个问题。
I'm new to php and I'm using xampp, eclipse pdt, xdebug. I've set xdebug so that I can debug my site on apache but when I click 'debug as web page' in the eclipse ide only the breakpoint in the public/index.php and in the views get hit. If I put a breakpoin here
public function indexAction()
{
// action body
$this->view->s = "deam";
}
the debugger don't stop?! why is that? I can't debug the most important part of my application. :( Plese help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定 eclipse 是如何工作的,但我认为你必须定义正确的
项目的入口点。
在 Netbeans 中,我可以将 index.php 设置为“startpage”,这样我就可以调试我的应用程序。
iam not sure how eclipse is working, but i think you have to define the correct
entry point for the project.
In Netbeans i can set the index.php as "startpage" than iam able to debug my application.