Joywork/cron/stats/getYandexReports.php

31 lines
749 B
PHP
Raw Normal View History

2026-05-22 20:21:54 +02:00
<?php
set_time_limit(0);
require_once($_SERVER['DOCUMENT_ROOT']."/config.php");
require_once($_SERVER['DOCUMENT_ROOT']."/engine/functions.php");
//ini_set('display_errors', 1);
//error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE);
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Проверка запроса статистики размещения объектов для Я.Недвижимость</title>
</head>
<body>
<?php
$start = microtime(true);
$stats = new AdvertStats(null, true);
$results = $stats->run('yandex', null);
$end = round((microtime(true) - $start), 2) . "s.";
?>
<pre>
<?php var_export($results); ?>
<?php echo "<br/><br/>Time overage: " . $end; ?>
</pre>
</body>
</html>