Use timestamp function to measure the speed of code. The timestamp function placed twice in a program one at starting of program and another at end of the program. Then the time difference between end time and start time is the actual speed of code. PHP uses microtime($get_as_float) function to measure the speed of code.
microtime($get_as_float): 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 Type: 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.
Example 1: This example use microtime() function to measure speed of code.
<?php
$time_start = microtime(true);
$num = 0;
for ( $i = 0; $i < 100000000; $i += 1 ) {
$num += 10;
}
$time_end = microtime(true);
$time = $time_end - $time_start ;
echo $time ;
?>
|
Example 2: This method uses time() function which returns time in seconds, not much accurate execution time can be measured.
<?php
$time_start = time();
$num = 0;
for ( $i = 0; $i < 100000000; $i += 1) {
$num += 10;
}
$time_end = time();
$time = $time_end - $time_start ;
echo $time ;
?>
|
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
12 Mar, 2019
Like Article
Save Article