Files
freeCodeCamp/guide/english/php/functions/time/index.md
2018-10-16 21:32:40 +05:30

348 B

title
title
Time

Time

The time() function returns the current unix timestamp (number of seconds since the Unix Epoch - January 1 1970 00:00:00 GMT).

Example

<?php
echo time();

Output:

1511732226

More Information: