gettimeofday()

In PHP by using gettimeofday function we can get the time elapsed between current time and Unix Epoch time.

We get an array in return.
Here is the syntax
gettimeofday();
We will try to generate output by using this. Here is the sample code
print_r(gettimeofday());
The output of above code is here
Array
(
    [sec] => 1713406477
    [usec] => 231187
    [minuteswest] => 0
    [dsttime] => 0
)
The first element [sec] gives the time in seconds elapsed between Unix Epoch time and current time.
The second element [usec] gives in microseconds.
[minuteswest] - minutes west of Greenwich
[dsttime] - type of dst correction
All these data are related to server side and not the local time of the client computer.

Getting float data

Instead of an array we can get float value like this.
echo gettimeofday(true);
The output is here.
1713406477.2312
Refresh this page and see how the data is changing
PHP Date Functions getTimestamp(): Timestamp from date object
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com







    Post your comments , suggestion , error , requirements etc here





    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer