本文整理汇总了PHP中Subnets::fetch_all_subnets_for_pingCheck方法的典型用法代码示例。如果您正苦于以下问题:PHP Subnets::fetch_all_subnets_for_pingCheck方法的具体用法?PHP Subnets::fetch_all_subnets_for_pingCheck怎么用?PHP Subnets::fetch_all_subnets_for_pingCheck使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Subnets
的用法示例。
在下文中一共展示了Subnets::fetch_all_subnets_for_pingCheck方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: die
die("Threading is required for scanning subnets. Please recompile PHP with pcntl extension");
}
// verify ping path
if ($Scan->icmp_type == "ping") {
if (!file_exists($Scan->settings->scanPingPath)) {
die("Invalid ping path!");
}
}
// verify fping path
if ($Scan->icmp_type == "fping") {
if (!file_exists($Scan->settings->scanFPingPath)) {
die("Invalid fping path!");
}
}
//first fetch all subnets to be scanned
$scan_subnets = $Subnets->fetch_all_subnets_for_pingCheck();
if ($Scan->debugging) {
print_r($scan_subnets);
}
if ($scan_subnets === false) {
die("No subnets are marked for checking status updates");
}
//fetch all addresses that need to be checked
foreach ($scan_subnets as $s) {
$subnet_addresses = $Addresses->fetch_subnet_addresses($s->id);
//set array for fping
if ($Scan->icmp_type == "fping") {
$subnets[] = array("id" => $s->id, "cidr" => $Subnets->transform_to_dotted($s->subnet) . "/" . $s->mask);
}
//save addresses
if (sizeof($subnet_addresses) > 1) {