-1

当 PHP 中有一个错误时,如何制作一个脚本来告诉我错误是什么?

我会假设我会制作一个 500.shtml 文档,但我会在里面放什么?

4

3 回答 3

2

我最近创建了一个。也许你可以使用它。

<?php

Class ErrorHandler
{
    private function __construct() { }

    public static function SetHandler($errTypes = ERROR_TYPES)
    {
        return set_error_handler(array('ErrorHandler' , 'Handler'), $errTypes);
    }

    public static function Handler($errNo, $errStr, $errFile, $errLine)
    {
        $backtrace = ErrorHandler::GetBacktrace(2);
        //Creating error message.
        $error_message = "\nErrNo: $errNo\n TEXT: $errStr\n LOCATION: $errFile\n LINE: $errLine at" . date('F j, Y, g:i:a') . " Showing Backtrace: $backtrace". "\n";

        if(LOG_ERRORS)
            error_log($error_message, 3 , LOG_ERROR_FILE);

        if(SEND_ERROR_MAIL == true)
            error_log($error_message, 1, ADMIN_ERROR_MAIL, "From: ". SENDMAIL_FROM . "\r\nTo: " . ADMIN_ERROR_MAIL);

        if( ($errNo == E_WARNING && IS_WARNING_FATAL ==false) || ($errNo == E_NOTICE || $errNo == E_USER_NOTICE) )
        {
            if(DEBUGGING)
                echo '<div class="error_box"> <b> <pre>' . $error_message. '</pre> </b> </div>';
        } else {
            if(DEBUGGING)
                echo '<div class="error_box"> <b> <pre>' . $error_message. '</pre> </b> </div>';
            else
            {
                echo SITE_GENERIC_FORM_MESSAGE;
                /*ob_clean();
                include '500.php';
                flush();
                ob_flush();
                ob_end_clean();
                exit();*/
            }
            exit();
        }
    }

    public static function GetBacktrace($irrelevantFirstEntries)
    {
        $s = '';
        $MAXSTRLEN = 64;
        $trace_array = debug_backtrace();

        for ($i = 0; $i < $irrelevantFirstEntries; $i++)
            array_shift($trace_array);

        $tabs = sizeof($trace_array) - 1;

        foreach($trace_array as $arr)
        {
            $tabs = $tabs - 1;
            if(isset($arr['class']))
                $s = $s . $arr['class'] . '.';
            $args = array();

            if(!empty($arr['agrs']))

                foreach($arr['args'] as $v)
                {
                    if(is_null($v))
                    $args[] = 'null';
                    elseif (is_array($v))
                        $args[] = 'Array[' . sizeof($v) . ']';
                    elseif (is_object($v))
                        $args[] = 'Object: ' . get_class($v);
                    elseif (is_bool($v))
                        $args[] = $v?'true':'false';
                    else
                    {
                        $v = (string)@$v;
                        $str = htmlspecialchars(substr($v, 0, $MAX STRLEN));
                        if (strlen($v) > $MAXSTRLEN)
                            $str = $str . "...";
                        $args[] = '"'.$str.'"';
                    }
                }

                $s = $s . $arr['function'] . '(' . implode(', ', $args). ')';
                $line = (isset ($arr['line']) ? $arr['line'] : "unknown");
                $file = (isset ($arr['file']) ? $arr['file'] : "unknown");
                $s = $s . sprintf(' # line %4d, file: $s', $line, $file);
                $s = $s . '\n';
        }
        return $s;

    }
}

?>

显然,需要进行一些更改。只需将此文件包含在您的 index.php 中即可。

于 2012-06-28T20:09:25.673 回答
0

某些服务器的默认配置设置为不显示 PHP 错误。您可以使用类似的东西覆盖它

error_reporting(E_ALL);
ini_set('display_errors', '1');
于 2012-06-28T19:57:19.503 回答
0

您无需在 php 中询问即可收到警告和错误,只需设置

error_reporting(E_ALL);

您将知道何时发生错误。

于 2012-06-28T19:58:26.650 回答