Created
May 9, 2015 18:57
-
-
Save kooler62/16451c384dd329586a56 to your computer and use it in GitHub Desktop.
секундомер
This file contains hidden or 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
| $start = microtime(true); | |
| # ... | |
| $time = microtime(true) - $start; | |
| printf('Скрипт выполнялся %.4F сек.', $time); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment