Files
freeCodeCamp/mock-guide/english/php/functions/time/index.md
Joe Erickson 0890dda962 Add content for PHP strings (#27489)
* Add content for PHP strings

* fix: resolved conflict
2019-02-28 16:37:12 -08:00

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: