使用netbeans xdebug调试ajax php

时间:2013-06-20 13:33:37

标签: ajax netbeans xdebug

我有一个jquery对另一个php文件进行ajax调用,无法解决如何让netbeans和xdebug停在此文件的断点处。 EG:

的index.php

function ajaxfunc(){
    ...
}

other.php

<?php
    echo Whatever::doit();
    class Whatever(){
            public function doit(){
                $stopme="now";
            }
    }
?>

Netbeans在index.php中的代码停止,但在other.php

中停止

1 个答案:

答案 0 :(得分:10)

将?XDEBUG_SESSION_START = netbeans-xdebug添加到您的ajax网址。

将打开你的ajax调用的调试。确保您打开的项目中包含other.php文件。