Handle exceptions.

This commit is contained in:
Igor Barkov (iwork) 2020-06-23 14:15:23 +03:00
parent 65be21e0ab
commit b51828ba2f
1 changed files with 3 additions and 3 deletions

View File

@ -35,16 +35,16 @@ function show_messages()
FROM `chat` ORDER BY `id` LIMIT 50');
} catch (\Krugozor\Database\Mysql\Exception $e) {
echo "DB Error: ". $e->getMessage() . PHP_EOL;
echo "File: " . $e->getFile() . "[".$e->getLine()."]". PHP_EOL;
echo "File: " . $e->getFile() . " (".$e->getLine().")". PHP_EOL;
}
while ($message = $chat->fetch_assoc()) {
$d = new DateTime($message['msgdate']);
$m = htmlspecialchars($message['msg']);
if ($message['type'] == 'sys') { /* Системка */
echo sprintf('<span style="color:maroon;background:#faa;">%s %s</span>', $d->format('H:i'),$m).PHP_EOL;
echo sprintf("<span style='color:maroon;background:#faa;'>%s %s</span>", $d->format('H:i'),$m).PHP_EOL;
} elseif ($message['type'] == 'sms') { /* Телеграмма */
echo sprintf('<span style="color:darkgreen;background:#afa;">[Телеграмма]: %s %s</span>', $d->format('H:i'),$m).PHP_EOL;
echo sprintf("<span style='color:darkgreen;background:#afa;'>[Телеграмма]: %s %s</span>", $d->format('H:i'),$m).PHP_EOL;
} else {echo sprintf('%s [%s]: %s', $d->format('H:i'),$message['from'],$m).PHP_EOL;}
}
}