API15:JProfiler/mark
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
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
<CodeExamplesForm />
