略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: Basic usage

2024-04-28

Basic usage

The example illustrates the basic StopWatch class usage

示例 #1 Measure several code blocks execution and get the total

<?php

$c 
= new HRTime\StopWatch;

$c->start();
/* measure this code block execution */
for ($i 0$i 1024*1024$i++);
$c->stop();
$elapsed0 $c->getLastElapsedTime(HRTime\Unit::NANOSECOND);

/* measurement is not running here*/
for ($i 0$i 1024*1024$i++);

$c->start();
/* measure this code block execution */
for ($i 0$i 1024*1024$i++);
$c->stop();
$elapsed1 $c->getLastElapsedTime(HRTime\Unit::NANOSECOND);

$elapsed_total $c->getElapsedTime(HRTime\Unit::NANOSECOND);

?>
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/hrtime.example.basic.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3