Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alexey-kar/b0ae0651846ccacda3d18ef0481e15b3 to your computer and use it in GitHub Desktop.
Save alexey-kar/b0ae0651846ccacda3d18ef0481e15b3 to your computer and use it in GitHub Desktop.
http://php.net/manual/ru/function.register-shutdown-function.php - создать хэндлер по завершению скрипта, внутри посмотреть ошибку
внутри него код
function shutdown()
{
if(!is_null($e = error_get_last()))
{
header('content-type: text/plain');
print "this is not html:\n\n". print_r($e,true);
}
}
http://onnet.ru/index.php?id=php-kak-uznat-skolko-pamyati-potreblyaet-php-skript - Как узнать сколько памяти потребляет php скрипт
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment