gpt4 book ai didi

PHP:测量 TTFB(第一个字节的时间)

转载 作者:行者123 更新时间:2023-12-04 01:43:02 26 4
gpt4 key购买 nike

由于 TTFB 会因每个请求而异,因此我想对其进行统计并获取平均值。有谁知道我如何通过 PHP 进行测量?bytecheck.com 网站能够分析这些数据:这是 example.com 的示例:http://www.bytecheck.com/results?resource=example.com

有人建议我如何实现这样的目标吗?

提前致谢。

最佳答案

你可以用curl解决这个问题:

$url = 'https://www.example.com/';

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);

curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);

echo "TTFB of ".$url." is: ".$info['starttransfer_time'];

结果

TTFB of https://www.example.com/ is: 0.67417

关于PHP:测量 TTFB(第一个字节的时间),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45690966/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com