10 lines
240 B
PHP
10 lines
240 B
PHP
<?php
|
|
header('Content-Type: application/json; charset=utf-8');
|
|
http_response_code(200);
|
|
echo json_encode([
|
|
'ok' => true,
|
|
'service' => 'landing-leads',
|
|
'time' => gmdate('c'),
|
|
'php' => PHP_VERSION,
|
|
], JSON_UNESCAPED_SLASHES);
|