如何在 php 中制作秒表
How to make Stopwatch in php
我在 php 中创建了一个这样的方法:`
function start(){
echo"Stopwatch has started.<br/>";
$this->startTime = mktime(date("H"), date("s"), date("m"), date("d"), date("Y"));
$_SESSION["time"] = $this->starTime;
}
function stop(){
echo"stopwatch stopped. <br/>";
$this->endTime = mktime(date("H")-1, date("s"), date("m"), date("d"), date("Y"));
echo"<b>Time Elapsed: </b>, date('H:i:s', $this->endTime-$_SESSION['time'])";
}
}
`
我的目标是向秒表询问开始和停止之间的持续时间。我必须显示持续时间,然后我可以多次使用秒表,每次我让它停止和开始时的持续时间值都应该正确计算。有人可以帮助我吗?
使用 hrtime() https://www.php.net/manual/en/function.hrtime.php
这是一个片段:
$start=hrtime(true);
sleep(5);//this is what you are going to be measuring
$end=hrtime(true);
$eta=$end-$start;
echo $eta/1e+6; //nanoseconds to milliseconds
//5000.362419
我在 php 中创建了一个这样的方法:`
function start(){
echo"Stopwatch has started.<br/>";
$this->startTime = mktime(date("H"), date("s"), date("m"), date("d"), date("Y"));
$_SESSION["time"] = $this->starTime;
}
function stop(){
echo"stopwatch stopped. <br/>";
$this->endTime = mktime(date("H")-1, date("s"), date("m"), date("d"), date("Y"));
echo"<b>Time Elapsed: </b>, date('H:i:s', $this->endTime-$_SESSION['time'])";
}
} `
我的目标是向秒表询问开始和停止之间的持续时间。我必须显示持续时间,然后我可以多次使用秒表,每次我让它停止和开始时的持续时间值都应该正确计算。有人可以帮助我吗?
使用 hrtime() https://www.php.net/manual/en/function.hrtime.php
这是一个片段:
$start=hrtime(true);
sleep(5);//this is what you are going to be measuring
$end=hrtime(true);
$eta=$end-$start;
echo $eta/1e+6; //nanoseconds to milliseconds
//5000.362419