Created
March 31, 2017 12:05
-
-
Save whiolf/66ac226852fa0c840d0ebdfa63c7a443 to your computer and use it in GitHub Desktop.
[Script execution time] #php #common #time
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); | |
| //Some script | |
| $time = microtime(true) - $start; | |
| printf('Script execution time %.4F sec.', $time); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment