microtime 


time apg

RETURNS the current  UNIX timestamp in microseconds, (µseconds).



<?php

str
|float microtime ([ bool $as_float FALSE ] )


where,

$as_float To control if the microseconds
                        will be shown 
as float or a STRING as integer
  
?>

 $as_float 


If $as_float = FALSE a integer value is returned.

If $as_float = TRUE a float value is returned.





This function is only available on operating system with support to the function gettimeofday.



  1 EXERCISE   

<?php

echo microtime();

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

  The microtime shown with the default: 
  $get_as_float = FALSE
  is composed of two parts in the STRING format:
  
  The first part indicates the decimal part, (msec), 
  and the second part, (sec), the integer part
  
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

?>

  2 EXERCISE   

<?php

echo microtime(true);

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

  The microtime shown with: 
  $get_as_float = TRUE
  is displayed in floating-point format
  
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

?>