You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
<?php
|
|
class Logger_SQL {
|
|
|
|
private $pdo;
|
|
|
|
function log_error($errno, $errstr, $file, $line, $context) {
|
|
|
|
// separate PDO connection object is used for logging
|
|
if (!$this->pdo) $this->pdo = Db::instance()->pdo_connect();
|
|
|
|
if ($this->pdo && get_schema_version() > 117) {
|
|
|
|
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
|
|
|
|
if (DB_TYPE == "mysql")
|
|
$context = substr($context, 0, 65534);
|
|
|
|
// passed error message may contain invalid unicode characters, failing to insert an error here
|
|
// would break the execution entirely by generating an actual fatal error instead of a E_WARNING etc
|
|
$errstr = UConverter::transcode($errstr, 'UTF-8', 'UTF-8');
|
|
$context = UConverter::transcode($context, 'UTF-8', 'UTF-8');
|
|
|
|
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
|
|
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
|
|
(?, ?, ?, ?, ?, ?, NOW())");
|
|
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
|
|
|
|
return $sth->rowCount();
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|