⚝
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
/
Edit File: Benchmark.php
<?php /** * Measures the execution time of a block in a template and reports the result * to the log. * * Copyright 2007-2008 Maintainable Software, LLC * Copyright 2006-2016 Horde LLC (http://www.horde.org/) * * @author Mike Naberezny <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @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: * * <code> * <?php $bench = $this->benchmark('Notes section') ?> * <?php echo $this->expensiveNotesOperation() ?> * <?php $bench->end() ?> * </code> * * 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 <mike@maintainable.com> * @author Derek DeVries <derek@maintainable.com> * @author Chuck Hagenbuch <chuck@horde.org> * @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); } }
Simpan