5 lines
167 B
PHP
5 lines
167 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
echo json_encode(['ok' => true, 'time' => gmdate('c'), 'php' => PHP_VERSION]);
|