TTFB - 跟踪 php 函数的运行时间

发布于 2024-10-26 07:56:47 字数 34 浏览 1 评论 0原文

我需要跟踪 php 函数运行时间来定位首字节时间问题?

I need to track the php functions run time to locate Time to First Byte problems?

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

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

发布评论

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

评论(1

云之铃。 2024-11-02 07:56:47

您有两个主要选择:

  1. xdebug,最好的 PHP 调试器之一,适合运行在开发环境。
  2. xhprof,一个由 Facebook 人员设计的工具,适合在开发和生产服务器上运行。 更多文档

这两个都可以让您收集脚本的性能指标,包括如何每个原生 PHP 函数都花费了大量时间。

You have two major options:

  1. xdebug, one of the best PHP debuggers out there, suitable for running in a dev environment.
  2. xhprof, a tool designed by the Facebook folks, suitable for running on both dev and production servers. More docs

Both of these will let you gather performance metrics on your script, including how much time is spent inside each native PHP function.

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