gpt4 book ai didi

php - 跟踪错误行和文件nr的正确方法。在使用自定义错误处理方法的自定义函数中使用debug_backtrace()

转载 作者:行者123 更新时间:2023-12-03 07:53:40 25 4
gpt4 key购买 nike

我做了自定义错误处理程序(见下文),可以正常工作。我添加了方法 add(),该方法用于打印和记录错误。基本上,它处理所有PHP注册的错误。

我试图在类外添加 add_error()函数,以便开发人员更友好地使用添加错误。
我遇到的问题是,我想从中获取正确的行和文件,但是使用 debug_backtrace()似乎太复杂了。我的意思是..它确实可以解决问题,但是它返回了其他不必要的东西的数组,因此我尝试过滤该数组,以返回文件并从中调用错误,但是没有运气。

例如,如果我从 load.php 文件中调用 $ error-> add('test','test'),则在其中包括类文件 error-handle.php ,它将返回

C:\WebServer\www\projects\backend-framework\includes\error-handle.php:144:
array (size=2)
0 =>
array (size=7)
'file' => string 'C:\WebServer\www\projects\backend-framework\load.php' (length=52)
'line' => int 34
'function' => string 'add' (length=3)
'class' => string 'ErrorHandle' (length=11)
'object' =>
object(ErrorHandle)[1]
public 'count' => int 0
public 'last_error' => null
public 'errors' =>
array (size=0)
...
public 'debug' => int 1
public 'report_errors' => int 1
public 'log_errors' => int 1
'type' => string '->' (length=2)
'args' =>
array (size=2)
0 => string 'test' (length=5)
1 => string 'test' (length=5)
1 =>
array (size=4)
'file' => string 'C:\WebServer\www\projects\backend-framework\index.php' (length=53)
'line' => int 2
'args' =>
array (size=1)
0 => string 'C:\WebServer\www\projects\backend-framework\load.php' (length=52)
'function' => string 'require_once' (length=12)

test: test in C:\WebServer\www\projects\backend-framework\index.php on line 2

如您所见,它返回 index.php 而不是 load.php

基本上,每当我调用 add_error() $ error-> add()时,我都需要获取调用该函数的正确文件和行。可能通过将 debug_backtrace()与一些高级过滤一起使用。

对于如何获得此结果的任何指导或想法,我将深表感谢。
提前致谢!

自定义错误处理程序:
<?php
/** Custom error handle **/
class ErrorHandle {
public $count = 0;
public $last_error;
public $errors = array();
public $debug;
public $report_errors;
public $log_errors;

function __construct($debug = false, $report_errors = false, $log_errors = true){
// Set error report & log args
$this->debug = $debug;
$this->report_errors = $report_errors;
$this->log_errors = $log_errors;

// Setup error reporting & logging
$this->report_errors($this->report_errors);
$this->log_errors($this->log_errors);


// Register error handle
set_error_handler(array($this, 'error_handler'));
// Register fatal error handle
register_shutdown_function(array($this, 'fatal_error_handler'));
}

function error_handler($type, $message, $file, $line){
$html_message = '';
switch ($type) {
case E_ERROR:
$error_type = 'Runtime Error';
break;
case E_WARNING:
$error_type = 'Runtime Warning';
break;
case E_PARSE:
$error_type = 'Runtime Parse';
break;
case E_NOTICE:
$error_type = 'Runtime Notice';
break;
case E_CORE_ERROR:
$error_type = 'Core Error';
break;
case E_CORE_WARNING:
$error_type = 'Core Warning';
break;
case E_COMPILE_ERROR:
$error_type = 'Compile Error';
break;
case E_COMPILE_WARNING:
$error_type = 'Compile Warning';
break;
case E_USER_ERROR:
$error_type = 'User Error';
break;
case E_USER_WARNING:
$error_type = 'User Warning';
break;
case E_USER_NOTICE:
$error_type = 'User Notice';
break;
case E_STRICT:
$error_type = 'PHP Suggestion';
break;
case E_RECOVERABLE_ERROR:
$error_type = 'PHP Notice';
break;
case E_DEPRECATED:
$error_type = 'PHP Warning';
break;
case E_USER_DEPRECATED:
$error_type = 'PHP Deprecation';
break;
default:
$error_type = 'Unknown';
}

$this->add($error_type, $message, $file, $line);
}

// Fatal error handler
function fatal_error_handler() {
$last_error = error_get_last();

if(in_array($last_error['type'],array( E_ERROR, E_CORE_ERROR, E_COMPILE_ERROR, E_USER_ERROR, E_RECOVERABLE_ERROR, E_CORE_WARNING, E_COMPILE_WARNING, E_PARSE))){
$this->error_handler($last_error['type'], $last_error['message'], $last_error['file'], $last_error['line']);
}

die();
}

// Turn ON/OFF display errors
function report_errors($bool=false){

ini_set('display_startup_errors', 0);
ini_set('docref_root', 0);
ini_set('docref_ext', 0);

if($bool){
error_reporting(999999999);
ini_set('error_reporting', 999999999);
ini_set('display_errors', 1);

ini_set('report_memleaks', 1);
ini_set('track_errors', 1);
ini_set('display_startup_errors', 1);

return true;
}else{
error_reporting(0);
ini_set('error_reporting', 0);
ini_set('display_errors', 0);

return false;
}
}

function log_errors($bool){
if($this->log_errors){
ini_set("log_errors", 1);
ini_set("error_log", LOGS_DIR . 'php-error_' . date('d.m.y') . '.txt');
return true;
}
return false;
}

function add($type, $message, $file = '', $line = 0){

$html_message = '';
$backtrace = debug_backtrace();


if ($file == '') $file = $backtrace[1]['file'];
if ($line == 0) $line = $backtrace[1]['line'];

//var_dump($backtrace);

$error = array(
'type' => $type,
'message' => $message,
'file' => $file,
'line' => $line
);

if(!in_multi_array($error, $this->errors)){
$this->count++;
$this->errors[$this->count] = $error;
$this->last_error = $this->errors[$this->count];

if($this->report_errors == true) echo $type . ': <strong>' . $message . '</strong> ' . '<i>in</i> <u>' . $file . '</u> <i>on line</i> <strong>' . $line . '</strong></i></br>';

if($this->log_errors == true) error_log( $type . ': ' . $message . ' in ' . $file . ' on line ' . $line );
return true;
}
return false;
}

}
?>

最佳答案

As you can see it returns index.php instead of load.php



它实际上返回两个值,只是您似乎实际上需要 $backtrace[1]['file']时正在访问 $backtrace[0]['file']

我认为当您考虑必须考虑深度时, debug_backtrace更加有意义。使用以下示例作为起点:
function debug($depth) {
$trace = debug_backtrace()[$depth];
if (isset($trace['file'], $trace['line'])) {
return [$trace['file'], $trace['line']];
}
return false;
}

// check depth 0
if (list($file, $line) = debug(0)) {
// ...
}

这样,您就可以尝试查看实际要寻找的深度。当然,这一切都取决于应用程序的组织方式,因此某些文件的深度可能不同。

关于php - 跟踪错误行和文件nr的正确方法。在使用自定义错误处理方法的自定义函数中使用debug_backtrace(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40363294/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com