【发布时间】:2013-06-17 09:24:21
【问题描述】:
我有 jquery 对另一个 php 文件进行 ajax 调用,但无法锻炼如何让 netbeans 和 xdebug 在此文件的断点处停止。 例如:
index.php
function ajaxfunc(){
...
}
其他.php
<?php
echo Whatever::doit();
class Whatever(){
public function doit(){
$stopme="now";
}
}
?>
Netbeans 停在 index.php 中的代码,但不在 other.php 中
【问题讨论】: