本文整理汇总了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) {