웹페이지 화면 표현 시간
링크
첨부
등록일
2017.07.06 20:53
컨텐츠 정보
- 9,130 조회
- 0 추천
- 목록
본문
그누보드5 팁자료실
웹페이지 화면 표현 시간tail.php 에 아래와 같이 변경하면
화면에 표현 하는데 걸리는 시간을
같이 볼수 있습니다.
( 단, 관리자만 확인 가능하게 했습니다. )
[1] tail.php 페이지 상단 )------
<!--run time add start1/2 -->
<?php if ($is_admin == 'super') { ?>
<div style='float:left; text-align:center;'>RUN TIME : <?php echo get_microtime()-$begin_time; ?> / SHOW TIME : <label id="ggrshowtime"></label></div>
<?php } ?>
<!--run time add end1/2 -->
화면에 표현 하는데 걸리는 시간을
같이 볼수 있습니다.
( 단, 관리자만 확인 가능하게 했습니다. )
[1] tail.php 페이지 상단 )------
<!--run time add start1/2 -->
<?php if ($is_admin == 'super') { ?>
<div style='float:left; text-align:center;'>RUN TIME : <?php echo get_microtime()-$begin_time; ?> / SHOW TIME : <label id="ggrshowtime"></label></div>
<?php } ?>
<!--run time add end1/2 -->
[2] tail.php 페이지 하단 )--------
<!--run time add start2/2 -->
<?php if ($is_admin == 'super') { ?>
<script type="text/javascript">
var ggr_stime = new Date();
function ggr_showtime(){ $('#ggrshowtime').html( (((new Date())-ggr_stime)/1000)+' sec' ); }
window.onstop = ggr_showtime;
window.onload = ggr_showtime;
</script>
<? } ?>
</body>
</html>
<!--run time add end2/2 -->
[ 결과 화면 ]-------------------
RUN TIME : 0.0063819885253906 / SHOW TIME : 0.036 sec
관련자료
-
링크
-
첨부등록일 2017.07.06 20:53
댓글 0
등록된 댓글이 없습니다.