本文整理匯總了PHP中Subnets::fetch_all_subnets_for_discoveryCheck方法的典型用法代碼示例。如果您正苦於以下問題:PHP Subnets::fetch_all_subnets_for_discoveryCheck方法的具體用法?PHP Subnets::fetch_all_subnets_for_discoveryCheck怎麽用?PHP Subnets::fetch_all_subnets_for_discoveryCheck使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Subnets
的用法示例。
在下文中一共展示了Subnets::fetch_all_subnets_for_discoveryCheck方法的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_discoveryCheck(1);
//set addresses
if ($scan_subnets !== false) {
// initial array
$addresses_tmp = array();
// loop
foreach ($scan_subnets as $s) {
// if subnet has slaves dont check it
if ($Subnets->has_slaves($s->id) === false) {
$addresses_tmp[$s->id] = $Scan->prepare_addresses_to_scan("discovery", $s->id, false);
}
}
//reindex
if (sizeof($addresses_tmp) > 0) {
foreach ($addresses_tmp as $s_id => $a) {
foreach ($a as $ip) {