求助:Fatal error: Call to undefined function debugBreak()
<?
function break_point(){
ob_flush();
flush();
sleep(.1);
debugBreak();
}
print("this will get shown first,");
print("as will this.<br>");
break_point();
print("this won't get shown until after ");
print("continuing the breakpoint.<br>");
break_point();
print("end!");
?>
debugbreak不是内置函数吗,为什么是没有定义的呢.谢谢