apache2.4 — получает код ошибки Apache и отображает его в переполнении стека

Я делаю страницу с ошибкой PHP, и мне было интересно, можно ли каким-либо образом получить код ошибки, который привел к ошибке, и отобразить ее. Затем я мог бы использовать то же самое, но PHP отображать другой код ошибки в зависимости от того, какая ошибка произошла. Я использую Apache 2.4 с PHP 5.6.10. Любая помощь будет принята с благодарностью.

1

Решение

Укажите все страницы ошибок в одном месте в .htaccess

ErrorDocument 400 /error.php
ErrorDocument 401 /error.php
ErrorDocument 403 /error.php
ErrorDocument 404 /error.php
ErrorDocument 500 /error.php

Затем в error.php вы можете сделать так:

<?php
$status = $_SERVER['REDIRECT_STATUS'];
$codes = array(
403 => array('403 Forbidden', 'The server has refused to fulfill your request.'),
404 => array('404 Not Found', 'The document/file requested was not found on this server.'),
405 => array('405 Method Not Allowed', 'The method specified in the Request-Line is not allowed for the specified resource.'),
408 => array('408 Request Timeout', 'Your browser failed to send a request in the time allowed by the server.'),
500 => array('500 Internal Server Error', 'The request was unsuccessful due to an unexpected condition encountered by the server.'),
502 => array('502 Bad Gateway', 'The server received an invalid response from the upstream server while trying to fulfill the request.'),
504 => array('504 Gateway Timeout', 'The upstream server failed to send a request in the time allowed by the server.'),
);

$title = $codes[$status][0];
$message = $codes[$status][1];
if ($title == false || strlen($status) != 3) {
$message = 'Please supply a valid status code.';
}
// Insert headers here
echo '<h1>'.$title.'</h1>
<p>'.$message.'</p>';
// Insert footer here

От https://css-tricks.com/snippets/php/error-page-to-handle-all-errors/

Если вы хотите, чтобы пользовательское сообщение об ошибке напр. Ошибка разбора, вы можете добавить это в начало вашего файла PHP:

<?php
set_error_handler('errorHandler');
function errorHandler($code, $msg, $file, $line) {

header($_SERVER['SERVER_PROTOCOL'] . ' 500 Internal Server Error', true, 500);
echo "<h1>Unexpected error occurred</h1><p>The request was unsuccessful due to an unexpected error.</p>";
// PHP error message:
echo "<p>$msg</p>";
die();
}
1

Другие решения

Других решений пока нет …

По вопросам рекламы ammmcru@yandex.ru
Adblock
detector