수행시간 측정

Jmnote bot (토론 | 기여)님의 2021년 9월 22일 (수) 12:51 판 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))

1 개요

수행시간 측정

2 PHP

function get_time() { $t=explode(' ',microtime()); return (float)$t[0]+(float)$t[1]; }
$start = get_time();
/*
수행할 내용
*/
$end = get_time();
$time = $end - $start;
echo number_format($time,6) . " 초 걸림";
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}