Php script hata `t $ tarafından idare etmedim. Ajax

0 Cevap php

I have these code:

<script>
$.ajaxSetup({
 timeout:3000,
 success: function(){alert('True!!!');},
 error:function (){
                    alert('false');
                }
});
$.ajax({
 url:'test.php',
});
</script>

Benim 'test.php' olduğunu:

<?
sleep(8);
$124415;
?>

So it`s have parser error, but ajax return "True" immediately, but if the second line have comment, it waiting for 3 sec. and return "false'. Any ideas ? I have change code test.php:

<? 
function shutdown() {
    header("HTTP/1.0 500 Internal Server Error");
ob_flush();
}
ob_start();
register_shutdown_function('shutdown');
spl_autoload_register('foo');// Fatal Error => Ajax false
//$112123123;//if turn on will be Parse Error => Ajax true
?>

Yani şimdi ajax ölümcül hata hakkında bana uyarı, ama Ayrıştırıcı Hata bulaşıcı değildir. Herkes bu sorun için iyi bir çözüm biliyorum?

0 Cevap