- Автор темы
- #1
Для просмотра скрытого содержимого вы должны войти или зарегистрироваться.
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
try{
//code
}
catch(Exception $ex)
{
fmail($ex);
}
set_error_handler("my_error_handler");
function my_error_handler( $errno, $errstr, $errfile, $errline )
{
mail(Ну и тут вобщем отправляешь errno, $errstr, $errfile, $errline на нужный мал);
}