$code = \'php statement\';
// getting perse error
function perse_error_check($code){
if(eval($code) === \"true\"){
return \"no perse error\";
}
if(eval($code) =
There is a simple way. Put your PHP code in an another file. For an example: index.php and check.php . Put your PHP code in check.php.
Now in index.php write:
$check_data = file_get_contents("yourhosturl/allotherdirectory/check.php");
if(preg_match("/Fatal error/",$check_data)){
echo "fatal error found";
}