我让jquery对另一个php文件进行ajax调用,并且无法练习如何让netbeans和xdebug在该文件的断点处停止。如:
index . php
function ajaxfunc(){
...
}
other.php
<?php
echo Whatever::doit();
class Whatever(){
public function doit(){
$stopme="now";
}
}
?>
Netbeans停止在index.php中的代码,而不是在other.php
添加?XDEBUG_SESSION_START=netbeans-xdebug到您的ajax url。
将打开ajax调用的调试。请确保您打开的项目中包含other.php文件。