本文整理匯總了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) {