Last active
December 16, 2022 02:11
-
-
Save kjkorea/96e3ddb8531be7294e2337a2366cf238 to your computer and use it in GitHub Desktop.
PHP 페이지 로딩 시간 측정
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_time = array_sum(explode(' ', microtime())); | |
| /************** | |
| * 페이지 하단 * | |
| **************/ | |
| $end_time = array_sum(explode(' ', microtime())); | |
| exit ("RUNNING TIME (".basename(__FILE__).") : ". ($end_time - $start_time)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment