我希望从 UPS 的 Web 管理界面中提取状态字段,以便可以在我正在编写的另一个 Web 应用程序中使用数据。我想知道是否有人会知道解决此问题的方法,因为我似乎无法通过网络搜索找到我正在寻找的信息。Id 还需要它的值来刷新或重新检查。下面的 UPS Web 界面示例首先查看在线字段:
问问题
106 次
1 回答
1
这是一个非常基本的示例,我尚未测试(未安装 php)。
您需要查看控制面板的来源,并了解如何识别包含所需信息的元素。
下面的代码(希望)搜索具有 id 的元素,server-status
如果该元素存在,则检查其class
属性以确定服务器的状态。
你不必使用这些dom
东西,你也可以用正则表达式或其他东西来做。只要你能准确找到你需要的信息。
您可能还需要使用 cURL 或比file_get_contents()
您可能需要登录凭据才能查看相关页面更高级的东西。
<?php
$html = file_get_contents("http://path.to/your/control.panel");
// you may need to use cURL or something more advanced if you need to provide login credentials
$dom = new DOMDocument;
$dom->loadHTML($html);
$test = $dom->getElementById('server-status');
if ($test == NULL) {
// unable to find element, somethings up!
} else {
if ($test->getAttribute('class') == "online") {
// status element has "online" class, server is online
} else {
// status element does not have "online" class, somethings up!
}
}
?>
更新
快速浏览了该管理软件的演示,它不会像我的示例那么简单,因为似乎没有任何有用的元素id
或class
名称。它仍然可以做到。
于 2013-03-11T13:23:05.427 回答