API15:JProfiler/mark
From Joomla! Documentation
Description
Output a time mark
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
mark($label)
| Parameter Name | Default Value | Description |
|---|---|---|
| $label | A label for the time mark |
Returns
string Mark enclosed in tags
Defined in
libraries/joomla/error/profiler.php
Importing
jimport( 'joomla.error.profiler' );
Source Body
function mark( $label )
{
$mark = $this->_prefix." $label: ";
$mark .= sprintf('%.3f', $this->getmicrotime() - $this->_start) . ' seconds';
if ( function_exists('memory_get_usage') ) {
$mark .= ', '.sprintf('%0.2f', memory_get_usage() / 1048576 ).' MB';
}
$this->_buffer[] = $mark;
return $mark;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples