ttrss/classes/logger/sql.php

23 lines
512 B
PHP
Raw Normal View History

2013-04-16 17:41:31 +02:00
<?php
class Logger_SQL {
function log_error($errno, $errstr, $file, $line, $context) {
2017-12-01 22:13:28 +01:00
$pdo = Db::pdo();
if ($pdo && get_schema_version() > 117) {
2017-12-01 22:13:28 +01:00
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
2013-04-16 17:41:31 +02:00
2017-12-01 22:13:28 +01:00
$sth = $pdo->prepare("INSERT INTO ttrss_error_log
2013-04-16 17:41:31 +02:00
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
2017-12-01 22:13:28 +01:00
(?, ?, ?, ?, ?, ?, NOW())");
$sth->execute([$errno, $errstr, $file, $line, $context, $owner_uid]);
2013-04-16 17:41:31 +02:00
2017-12-01 22:13:28 +01:00
return $sth->rowCount();
2013-04-16 17:41:31 +02:00
}
2013-04-16 17:41:31 +02:00
return false;
}
2017-04-26 19:24:18 +02:00
}