API15

JProfiler/mark

From Joomla! Documentation

< API15:JProfiler
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Output a time mark

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

mark($label)
Parameter Name Default Value Description
$label A label for the time mark

Returns[edit]

string Mark enclosed in tags

Defined in[edit]

libraries/joomla/error/profiler.php

Importing[edit]

jimport( 'joomla.error.profiler' );

Source Body[edit]

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[edit]

Code Examples[edit]