'success', 'count' => $count]); } elseif ($_SERVER['REQUEST_METHOD'] === 'GET') { // Возвращаем текущее значение if (file_exists($counterFile)) { $count = file_get_contents($counterFile); } else { $count = 0; } echo json_encode(['count' => intval($count)]); } ?>