15 lines
479 B
PHP
15 lines
479 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
require_once __DIR__ . '/app/channel_data.php';
|
|
|
|
try {
|
|
channel_app_bootstrap();
|
|
$count = (int) db()->query('SELECT COUNT(*) FROM channels')->fetchColumn();
|
|
echo json_encode(['ok' => true, 'channels' => $count, 'time' => gmdate('c')], JSON_UNESCAPED_SLASHES);
|
|
} catch (Throwable $e) {
|
|
http_response_code(500);
|
|
echo json_encode(['ok' => false], JSON_UNESCAPED_SLASHES);
|
|
}
|