Last active
January 25, 2018 16:43
-
-
Save alexey-kar/b0ae0651846ccacda3d18ef0481e15b3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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