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.
<?php
function myErrorHandler( $errno, $msg, $file, $line )
{
    if ( error_reporting() == 0 ) return;
    
    $output = <<<ERROR
Ошибка: $msg
Место: $file, строка $line
ERROR;
    $email = 'webmaster@host.com';
    mail( $email, 'PHP Errors', $output );
    return;
}
set_error_handler( 'myErrorHandler' );
?>