Last active
January 5, 2017 01:31
-
-
Save adnan360/c763046424f9fde0609bbe54e8ef565f to your computer and use it in GitHub Desktop.
PHP mktime() test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
echo mktime().'<br/>'; | |
sleep(1); | |
echo mktime().'<br/>'; | |
sleep(1); | |
echo mktime().'<br/>'; | |
sleep(1); | |
echo mktime().'<br/>'; | |
sleep(1); | |
echo mktime().'<br/>'; | |
sleep(1); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment