API15

API15:JProfiler/getmicrotime

From Joomla! Documentation

Description

Get the current time.

[<! removed edit link to red link >]

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

Syntax

getmicrotime()


Returns

float The current time

Defined in

libraries/joomla/error/profiler.php

Importing

jimport( 'joomla.error.profiler' );

Source Body

function getmicrotime()
{
        list( $usec, $sec ) = explode( ' ', microtime() );
        return ((float)$usec + (float)$sec);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples