PHP | microtime() Function
The microtime() function is an inbuilt function in PHP which is used to return the current Unix timestamp with microseconds. The $get_as_float is sent as a parameter to the microtime() function and it returns the string microsec sec by default.
Syntax:
microtime( $get_as_float )
Parameters: This function accepts single parameter $get_as_float which is optional. If $get_as_float is set to TRUE then it specify that the function should return a float, instead of a string.
Return Value: It returns the string microsec sec by default, where sec is the number of seconds since the Unix Epoch (0:00:00 January 1, 1970, GMT), and microsec is the microseconds part. If the $get_as_float parameter is set to TRUE, it returns a float representing the current time in seconds since the Unix epoch accurate to the nearest microsecond.
Exceptions: The microtime() function is only available on operating systems that support the gettimeofday() system call.
Below programs illustrate the microtime() function in PHP:
Program 1:
<?php // Displaying the micro time as a string echo ("The micro time is :"); echo(microtime()); ?> |
The micro time is :0.51423700 1535452933
Program 2:
<?php // Displaying the micro time as a float type echo ("The micro time is :"); echo(microtime(true)); ?> |
The micro time is :1535452935.2589
Related Articles:
Reference: http://php.net/manual/en/function.microtime.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name from within that function using JavaScript ?
- D3.js | d3.rgb() Function
- D3.js | d3.map.set() Function
- PHP | Ds\Map xor() Function
- PHP | max( ) Function
- PHP | min( ) Function
- D3.js | d3.lab() Function
- PHP | Ds\Set contains() Function
- p5.js | min() function
- CSS | rgb() Function
- PHP | key() Function
- p5.js | cos() function
- PHP | pos() Function
- PHP | exp() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



