Curl/php:执行时间?

发布于 2024-11-29 12:51:00 字数 78 浏览 0 评论 0原文

使用CURL/PHP,如何测量服务器的执行时间? STARTTRANSFER_TIME 和 PRETRANSFER_TIME 之间有什么区别?

Using CURL/PHP, how can I measure server's execution time? and what is the diference b/w STARTTRANSFER_TIME and PRETRANSFER_TIME ?

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

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

发布评论

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

评论(1

请帮我爱他 2024-12-06 12:51:00

关于 STARTTRANSFER_TIME 和 PRETRANSFER_TIME。

Starttransfer_time

将指针传递给双精度型以接收时间(以秒为单位)
从开始到第一个字节即将被传输。
这包括 CURLINFO_PRETRANSFER_TIME 以及服务器的时间
需要计算结果

Pretransfer_time

将指针传递给双精度型以接收时间(以秒为单位)
从开始到文件传输即将开始。这
包括所有特定的传输前命令和协商
涉及的特定协议

Regarding STARTTRANSFER_TIME and PRETRANSFER_TIME.

Starttransfer_time

Pass a pointer to a double to receive the time, in seconds, it took
from the start until the first byte is just about to be transferred.
This includes CURLINFO_PRETRANSFER_TIME and also the time the server
needs to calculate the result

Pretransfer_time

Pass a pointer to a double to receive the time, in seconds, it took
from the start until the file transfer is just about to begin. This
includes all pre-transfer commands and negotiations that are specific
to the particular protocol(s) involved

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