如何计算使用wget打开PHP文件所需的时间?

发布于 2024-12-08 21:34:55 字数 54 浏览 2 评论 0原文

我想找出在 Perl 脚本中打开(下载) php 文件所需的时间。我想在这里使用 wget 。

I want to find out the time required by a php file to open(download) inside a Perl script. I want to use wget here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最后的乘客 2024-12-15 21:34:55

您可以使用 microtime 来计算时间:

/**
 * Simple function to replicate PHP 5 behaviour
 */
function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}

$time_start = microtime_float();

// do stuff

$time_end = microtime_float();
$time = $time_end - $time_start;

echo "Execution time was $time seconds\n";

You could use microtime to calculate the time:

/**
 * Simple function to replicate PHP 5 behaviour
 */
function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}

$time_start = microtime_float();

// do stuff

$time_end = microtime_float();
$time = $time_end - $time_start;

echo "Execution time was $time seconds\n";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文