mirror of https://github.com/Maecenas/tt-rss.git
An unofficial mirror of the Tiny Tiny RSS, an open-source RSS feed reader and aggregator
https://git.tt-rss.org/fox/tt-rss
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.0 KiB
86 lines
2.0 KiB
<?php |
|
function format_backtrace($trace) { |
|
$rv = ""; |
|
$idx = 1; |
|
|
|
if (is_array($trace)) { |
|
foreach ($trace as $e) { |
|
if (isset($e["file"]) && isset($e["line"])) { |
|
$fmt_args = []; |
|
|
|
if (is_array($e["args"])) { |
|
foreach ($e["args"] as $a) { |
|
if (is_object($a)) { |
|
array_push($fmt_args, "{" . get_class($a) . "}"); |
|
} else if (is_array($a)) { |
|
array_push($fmt_args, "[" . truncate_string(json_encode($a), 256, "...")) . "]"; |
|
} else if (is_resource($a)) { |
|
array_push($fmt_args, truncate_string(get_resource_type($a), 256, "...")); |
|
} else { |
|
array_push($fmt_args, truncate_string($a, 256, "...")); |
|
} |
|
} |
|
} |
|
|
|
$filename = str_replace(dirname(__DIR__) . "/", "", $e["file"]); |
|
|
|
$rv .= sprintf("%d. %s(%s): %s(%s)\n", |
|
$idx, |
|
$filename, |
|
$e["line"], |
|
$e["function"], |
|
implode(", ", $fmt_args)); |
|
|
|
$idx++; |
|
} |
|
} |
|
} |
|
|
|
return $rv; |
|
} |
|
|
|
function ttrss_error_handler($errno, $errstr, $file, $line) { |
|
/*if (version_compare(PHP_VERSION, '8.0.0', '<')) { |
|
if (error_reporting() == 0 || !$errno) return false; |
|
} else { |
|
if (!(error_reporting() & $errno)) return false; |
|
} |
|
|
|
if (error_reporting() == 0 || !$errno) return false;*/ |
|
|
|
$file = substr(str_replace(dirname(__DIR__), "", $file), 1); |
|
|
|
$context = format_backtrace(debug_backtrace()); |
|
$errstr = truncate_middle($errstr, 16384, " (...) "); |
|
|
|
if (class_exists("Logger")) |
|
return Logger::log_error((int)$errno, $errstr, $file, (int)$line, $context); |
|
else |
|
return false; |
|
} |
|
|
|
function ttrss_fatal_handler() { |
|
$error = error_get_last(); |
|
|
|
if ($error !== NULL) { |
|
$errno = $error["type"]; |
|
$file = $error["file"]; |
|
$line = $error["line"]; |
|
$errstr = $error["message"]; |
|
|
|
if (!$errno) return false; |
|
|
|
$context = format_backtrace(debug_backtrace()); |
|
|
|
$file = substr(str_replace(dirname(__DIR__), "", $file), 1); |
|
|
|
if (class_exists("Logger")) |
|
return Logger::log_error((int)$errno, $errstr, $file, (int)$line, $context); |
|
} |
|
|
|
return false; |
|
} |
|
|
|
register_shutdown_function('ttrss_fatal_handler'); |
|
set_error_handler('ttrss_error_handler'); |
|
|
|
|