/home/desid573/public_html/ims2/system/core
NameSizeModeActions
compat/-0755rm
Benchmark.php40880644editdlrm
CodeIgniter.php161440644editdlrm
Common.php220260644editdlrm
Config.php93510644editdlrm
Controller.php30370644editdlrm
Exceptions.php73290644editdlrm
Hooks.php63260644editdlrm
index.html1310644editdlrm
Input.php238340644editdlrm
Lang.php55400644editdlrm
Loader.php371490644editdlrm
Log.php76440644editdlrm
Model.php25730644editdlrm
Output.php212990644editdlrm
Router.php132260644editdlrm
Security.php298600644editdlrm
URI.php152750644editdlrm
Utf8.php44890644editdlrm
Edit: /home/desid573/public_html/ims2/system/core/Benchmark.php (4088B)
marker[$name] = microtime(TRUE); } // -------------------------------------------------------------------- /** * Elapsed time * * Calculates the time difference between two marked points. * * If the first parameter is empty this function instead returns the * {elapsed_time} pseudo-variable. This permits the full system * execution time to be shown in a template. The output class will * swap the real value for this variable. * * @param string $point1 A particular marked point * @param string $point2 A particular marked point * @param int $decimals Number of decimal places * * @return string Calculated elapsed time on success, * an '{elapsed_string}' if $point1 is empty * or an empty string if $point1 is not found. */ public function elapsed_time($point1 = '', $point2 = '', $decimals = 4) { if ($point1 === '') { return '{elapsed_time}'; } if ( ! isset($this->marker[$point1])) { return ''; } if ( ! isset($this->marker[$point2])) { $this->marker[$point2] = microtime(TRUE); } return number_format($this->marker[$point2] - $this->marker[$point1], $decimals); } // -------------------------------------------------------------------- /** * Memory Usage * * Simply returns the {memory_usage} marker. * * This permits it to be put it anywhere in a template * without the memory being calculated until the end. * The output class will swap the real value for this variable. * * @return string '{memory_usage}' */ public function memory_usage() { return '{memory_usage}'; } }