⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
View
/
Helper
/
View File Name :
Benchmark.php
* @author Derek DeVries
* @author Chuck Hagenbuch
* @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ /** * Measures the execution time of a block in a template and reports the result * to the log. * * Example: * *
* benchmark('Notes section') ?> * expensiveNotesOperation() ?> * end() ?> *
* * Will add something like "Notes section (0.34523)" to the log. * * You may give an optional logger level as the second argument ('debug', * 'info', 'warn', 'error'). The default is 'info'. The level may also be * given as a Horde_Log::* constant. * * @author Mike Naberezny
* @author Derek DeVries
* @author Chuck Hagenbuch
* @license http://www.horde.org/licenses/bsd * @category Horde * @package View * @subpackage Helper */ class Horde_View_Helper_Benchmark extends Horde_View_Helper_Base { /** * Starts a new benchmark. * * @param string $message Message to log after the benchmark has * ended. * @param string|integer $level Log level to log after the benchmark has * ended. * * @return Horde_View_Helper_Benchmark_Timer A benchmark timer object. */ public function benchmark($message = 'Benchmarking', $level = 'info') { return new Horde_View_Helper_Benchmark_Timer($message, $level, $this->_view->logger); } }