microtime --
Return current Unix timestamp with microseconds
Syntax
mixed microtime ( [bool get_as_float] )
microtime() returns the current Unix timestamp with
microseconds. This function is only available on operating systems that
support the gettimeofday() system call.
When called without the optional argument, this function returns the string
"msec sec" where sec is the current time measured in the number of
seconds since the Unix Epoch (0:00:00 January 1, 1970 GMT), and
msec is the microseconds part.
Both portions of the string are returned in units of seconds.
When get_as_float is given, and evaluates to
TRUE, microtime() will return a float.
Note:
The get_as_float parameter was added as of
PHP 5.0.0.
Example 1. Timing script execution with microtime()
<?php /** * Simple function to replicate PHP 5 behaviour */ function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); }
microtime php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php microtime syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.