如何使用 netbeans 和 Xdebug 调试 PHP

How to debug PHP with netbeans and Xdebug(如何使用 netbeans 和 Xdebug 调试 PHP)
本文介绍了如何使用 netbeans 和 Xdebug 调试 PHP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我最近尝试使用 杂志评论后高度评价S.T.T..http://www.smashingmagazine.com/2009/02/11/the-big-php-ides-test-why-use-oneand-which-to-choose/

我从 Notepad++ 切换的主要原因是我希望能够调试我的代码并通过它进行设置.

My main reason for switching from Notepad++ is that I'd like to be able to debug my code and set through it.

我已按照供应商 http://xdebug.org/ 和有关如何安装 xdebug 的说明进行操作netbeans 网站.http://www.netbeans.org/kb/docs/php/debugging.html#gettingReady 但无济于事.

I have followed the instructions about how to install xdebug from both the vendor http://xdebug.org/ and the netbeans web site. http://www.netbeans.org/kb/docs/php/debugging.html#gettingReady but to no avail.

它是怎么做的,有没有其他人在 netbeans 中调试过?

(我的设置是:Windows XP、Wamp server 2.0、PHP 5、Netbeans 6.5.1)

推荐答案

此后我发现 WAMP 与 Mod_rewrite 和 cURL 一起安装时无法应对 Xdebug.

I have since found that WAMP, when installed with Mod_rewrite and cURL cannot cope with Xdebug.

这是一个已知错误并且每次都会崩溃.

It is a known error and crashes everytime.

http://phphints.wordpress.com/2008/10/24/wampserver-phpini-settings-for-use-with-xdebugdll-pear-and-silverstripe-cms-framework/

不幸的是,我也在使用这两个库.

Unfortunately, I am using these 2 libraries too.

这篇关于如何使用 netbeans 和 Xdebug 调试 PHP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Why can#39;t I update data in an array with foreach loop?(为什么我不能用 foreach 循环更新数组中的数据?)
Foreach for arrays inside of an array(Foreach 用于数组内的数组)
PHP array get next key/value in foreach()(PHP 数组在 foreach() 中获取下一个键/值)
Using preg_match on a multidimensional array to return key values arrays(在多维数组上使用 preg_match 返回键值数组)
php foreach as key, every two number as a group(php foreach 为key,每两个数字为一组)
Treat a PHP class that implements Iterator as an array(将实现 Iterator 的 PHP 类视为数组)