<?php register_shutdown_function(static function () { global $php_errormsg; while(ob_get_level())ob_end_clean(); ob_implicit_flush(true); echo "<!--\n"; echo "\n\tHeaders Sent:"; $file = $line = null; headers_sent($file, $line); $file = empty($file) ? 'unknown' : $file; echo "\n\t\t$file: $line"; echo "\n\tLast Error:"; /*if (!empty($lastError = error_get_last())) { foreach ($lastError as $k => $v) { echo htmlspecialchars("\n\t\t$k: $v"); } } else*/ if (!empty($GLOBALS['php_errormsg'])) { echo "\n\t\tError: {$GLOBALS['php_errormsg']}"; } else { echo "\n\t\tnone"; } echo "\n\tIncluded Files:"; echo "\n\t\t" . implode("\n\t\t", get_included_files()); echo "\n-->"; }); trigger_error('fdgsdf', E_USER_WARNING);
You have javascript disabled. You will not be able to edit any code.