Navigation
Home
About
Me
Infra
Language
Snippets
etc
Bookmark
Archive of posts with
tag 'runtime'
PHP 스크립트 실행 시간 체크하기
페이지 로딩이 너무 느려서 어느 부분에서 느려지는지 체크하기 위하여 실행 시간 체크를 해야 할 때가 있다.그누보드에 있는 함수를 이용해서 간단하게 체크하도록 한다.아래 코드를 스크립트 최상단에 입력<?php// 마이크로 타임을 얻어 계산 형식으로 만듦function get_microtime(){ list($usec, $sec)...