/
bear
/
opencorpora
Обзор
Документация
Войти
/
bear
/
opencorpora
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
lib/timer.php
20 строк
574 B
Dmitry Granovsky
forgotten timer.php
28 ноя 2014, 15:00
28 ноя 2014, 15:00
154c0ee
Код
Авторство
О чём код?
<?php function log_timing($is_ajax=false) { global $config; global $total_time; if ($total_time < $config['misc']['timing_log_threshold']) return; $user_id = 0; // todo use is_logged() when it doesn't depend on pending license if (isset($_SESSION['user_id']) && $_SESSION['user_id'] > 0) $user_id = $_SESSION['user_id']; $page = $_SERVER['REQUEST_URI']; sql_pe( "INSERT INTO timing (user_id, page, total_time, is_ajax) VALUES (?, ?, ?, ?)", array($user_id, $page, $total_time, $is_ajax ? 1 : 0) ); } ?>