我希望获取活动连接数以与设定的数字进行比较,以检查服务器是否可以处理更多连接,或者是否应该重定向到其他服务器。
服务器的统计页面:
<html>
<head></head>
<body>
<pre>Active connections: 2
server accepts handled requests
208 208 232
Reading: 0 Writing: 1 Waiting: 0
</pre>
</body>
</html>
&#13;
我正在寻找一个代码,用于放置&#39; 2&#39;在这种情况下,变量。我可以在哪里工作。
提前致谢!
答案 0 :(得分:0)
下载文件的来源,删除html标签并使用正则表达式查找值。
$html = strip_tags(File_get_contents("source.html"));
Preg_match("/Active connections:\s+(\d+)/", $html, $number);
现在$number
是一个带有值的数组。