Source
echo $timer.': '.round($mtime - $timers[$timer]['start'], 4).' ('.round($mtime - $timers[$timer]['last'], 4).')'.'<br>';
<?php
/*
** Zabbix
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
function sdb($return = false) {
$backtrace = debug_backtrace();
array_shift($backtrace);
$result = 'DEBUG BACKTRACE: <br/>';
foreach ($backtrace as $n => $bt) {
$result .= ' --['.$n.']-- '.$bt['file'].' : '.$bt['line'].'<br/>';
$result .= " <b>".(isset($bt['class']) ? $bt['class'].$bt['type'].$bt['function'] : $bt['function']).'</b>';
$args = [];
foreach ($bt['args'] as $arg) {
$args[] = is_array($arg) ? print_r($arg, true) : $arg;
}
$result .= '( '.implode(', ', $args).' ) <br/>';
}
if ($return) {
return $result;
}
else {
echo $result;
}
}
function sdi($msg = 'SDI') {
echo 'DEBUG INFO: ';
var_dump($msg);
echo BR();
}
function sdii($msg = 'SDII', $for = '', $showInvisible = true) {
if ($showInvisible) {
if ($msg === null) {
$msg = 'NULL';
}
elseif ($msg === false) {
$msg = 'FALSE';
}
elseif ($msg === TRUE) {
$msg = 'TRUE';
}
}
echo 'DEBUG INFO: '.$for;
echo '<pre>'.print_r($msg, true).'</pre>';
echo BR();