我正在使用 WAMP。
我想在查看项目时测量发送和接收的字节数。
怎么办?
最佳答案
客户端解决方案:如果您使用的是 firefox,插件 firebug ( https://addons.mozilla.org/de/firefox/addon/firebug/ ) 可以做到这一点。
服务器端解决方案:您可以在您的 apache 日志格式中指定以下内容(用于您的访问日志):
%...B: Bytes sent, excluding HTTP headers.
%...b: Bytes sent, excluding HTTP headers. In CLF format
参见:http://httpd.apache.org/docs/1.3/mod/mod_log_config.html
添加:
您会在 httpd.conf 中找到类似的内容:
LogFormat "%h %l %u %t \"%r\" %>s %b" common
CustomLog logs/access_log common
这很容易定制。
关于php - 测量发送接收的流量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6449595/