Joywork/cron/stats/getDomclickReports.php
2026-05-22 21:21:54 +03:00

31 lines
738 B
PHP

<?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('domclick', null);
$end = round((microtime(true) - $start), 2) . "s.";
?>
<pre>
<?php var_export($results); ?>
<?php echo "<br/><br/>Time overage: " . $end; ?>
</pre>
</body>
</html>