Skip to content

Instantly share code, notes, and snippets.

@kjkorea
Last active December 16, 2022 02:11
Show Gist options
  • Select an option

  • Save kjkorea/96e3ddb8531be7294e2337a2366cf238 to your computer and use it in GitHub Desktop.

Select an option

Save kjkorea/96e3ddb8531be7294e2337a2366cf238 to your computer and use it in GitHub Desktop.
PHP 페이지 로딩 시간 측정
/**************
* 페이지 상단 *
**************/
$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