dear all
I tried to use some php error handling instruction like error_get_last() but it seems doesn’t work in SC 5. I tried this function also in a blank application I get always null also in case of error ( see this easy example:
<?php
echo $a;
if (!is_null(error_get_last())
{print_r(error_get_last());
}
else
{ echo (“No error”);
}
?>
How can check error status in a complex routine with many php functions ?
Suggestions ? Please Help.