如何在 Netbeans 中调试 PHP 代码?
我刚刚开始进入 PHP 世界,我选择了 Netbeans 编辑器。我正在使用最新的版本,即 V7.0.1 并设置 WAMP。但是,我不明白如何调试我的 PHP 代码?我的断点在 Netbeans 中没有被命中。
任何帮助都会有用的。
谢谢。
I am just beginning my journey into PHP world and I chose Netbeans editor. I am using the latest one i.e V7.0.1 and setup WAMP. However, I don't quiet understand how will I debug my PHP code? My breakpoints don't get hit in Netbeans.
Any help would be useful.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我建议使用 Xdebug。
了解 Xdebug 远程调试,它与 NetBeans 集成。
I would recommend using Xdebug.
Read about Xdebug Remote Debugging, this integrates with NetBeans.
除了调试之外,还了解如何使用 XDEBUG 分析代码。您可以配置 Xdebug,以便在您的 URL 中添加一个开关 ?XDEBUG_PROFILE,它将记录每个语句的精确时间。安装 webgrind 以在浏览器中查看详细报告。 WAMP 可能已经安装了它,只需查看您的 PHP.INI 文件即可。如果没有,请访问 XDEBUG 站点。
了解如何从一开始就编写高效的代码:)
In addition to debugging, learn how to profile your code with XDEBUG. You can configure Xdebug so there is a switch ?XDEBUG_PROFILE added to your URL, which will record the precise time of each statement. Install webgrind to see detailed reports in your browser. WAMP may already have it installed, just look in your PHP.INI file. If not visit the XDEBUG site.
Learn how to write efficient code from the start :)
请参阅此文档: http://netbeans.org/kb/docs/php/debugging.html
或者更一般地说,PHP 学习路径:http://netbeans.org/kb/trails/php.html
See this document: http://netbeans.org/kb/docs/php/debugging.html
Or more generally, the PHP Learning Trail: http://netbeans.org/kb/trails/php.html