我有
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中停止