Ben bir özel hata işleme işlevini tanımlamak istiyorum:
Ben bu var:
if (!function_exists('my_errorhandler')) {
function my_errorhandler($errno, $errstr='', $errfile='', $errline='',$errcontext='')
{
/* */
return false;
}
}
$old_handler=set_error_handler('my_errorhandler'); /**/
The error is raised only when I have the last line it.
I am doing something wrong, or could it be from hosting company?