我可以将子域的带宽读取到 PHP 中吗?

发布于 2024-12-15 13:14:56 字数 195 浏览 2 评论 0原文

我的其他相关问题,是否可以将最新的带宽量(例如我可以在cPanel中手动读取的内容)解析为PHP?

Related to my other question, is it possible to parse the latest bandwidth amount (For instance, what I can read manually in cPanel) into PHP?

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

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

发布评论

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

评论(1

邮友 2024-12-22 13:14:56

是的,你可以。有很多方法。我不了解 cPanel,因此下面描述的方法是通用的:

  • 您可以使用 PHP 自己解析服务器日志文件。可能有很多现成的类,甚至可能有模块可以做到这一点。
  • 您可能想探索 cPanel 并找出是否有一个 API 可以告诉您此类信息
  • 您可以登录到您的 cPanel 并抓取屏幕(解析 HTML 以获取您的值)
  • 如果您想要您的整个流量服务器接口,您可能想询问 ifconfig (http://blog.kagesenshi.org/2006/03/bandwidth-monitoring-script-through.html)
  • 如果您使用外部计数器(例如防火墙)了解如何您可以从中获取该信息并使用 Sockets 之类的东西,或者简单地使用curl 来获取它。

我希望这些想法之一可以帮助您开始:)

cu
罗马

yes you can. There are many ways. I don't know cPanel so the approaches described further down are generic:

  • You can parse the servers log files yourself using PHP. There may be a bunch of ready made classes, maybe even modules doding that out there.
  • You may want to explore cPanel and find out if there's an API which tells you that kind of stuff
  • You may be able to login to your cPanel and scrape the screen (parse the HTML to get you value)
  • If you want the entire traffic of your servers interface, you may want to ask ifconfig (http://blog.kagesenshi.org/2006/03/bandwidth-monitoring-script-through.html)
  • If you're using an external counter (e.g. Firewall) find out how you can proble that information from it and use something like Sockets, or simply curl to get it.

I hope one of these ideas may gets you started :)

cu
Roman

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