我在Netbeans (Windows 8)上调试Xdebug时遇到了一个奇怪的问题。下面是我的代码:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://localhost");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$response = curl_exec($ch);
if ( curl_errno($ch) ) {
$result = 'ERROR -> ' . curl_errno($ch) . ': ' . curl_error($ch);
echo $result;
}
print "n response = n";
var_dump($response);
// close cURL resource, and free up system resources
curl_close($ch);
die;
当我调试Netbeans时,我得到:
ERROR -> 28: Operation timed out after 10015 milliseconds with 0 out of -1 bytes receivedresponse = bool(false)
当我在没有调试的情况下运行时,我没有得到任何错误和一个xampp页面的响应。
在php.ini中我有:
[XDebug]
zend_extension = "C:xamppphpextphp_xdebug-2.2.5-5.4-vc9.dll"
xdebug.profiler_append = 0
xdebug.profiler_enable = 1
xdebug.profiler_enable_trigger = 0
xdebug.profiler_output_dir = "C:xampptmp"
xdebug.profiler_output_name = "cachegrind.out.%t-%s"
xdebug.remote_enable = 1
xdebug.remote_handler = "dbgp"
xdebug.remote_autostart = 1
xdebug.remote_host = "127.0.0.1"
xdebug.remote_port = "9000"
xdebug.trace_output_dir = "C:xampptmp"
xdebug.max_nesting_level = 200
xdebug.idekey = "netbeans-xdebug"
我认为当您设置xdebug.remote_autostart = 1
时,Xdebug将始终尝试启动远程调试会话并尝试连接到客户端(即使GET/POST/COOKIE变量不存在)。
可能是,在您的情况下,Xdebug尝试连接Netbeans,但无法完成操作,这导致Xdebug出现Operation timeout
错误。