我正在编写一个简单的php系统来检查IP地址。如何创建代码结构来控制50个IP地址?
我是否从数据库中提取每个IP地址并将其打印为功能? 正是我要为每个IP地址做的事情,然后让它在屏幕上运行
我的代码在这里:
<?php
class CheckDevice {
public function myOS(){
if (strtoupper(substr(PHP_OS, 0, 3)) === (chr(87).chr(73).chr(78)))
return true;
return false;
}
public function ping($ip_addr){
if ($this->myOS()){
if (!exec("ping -n 1 -w 1 ".$ip_addr." 2>NUL > NUL && (echo 0) || (echo 1)"))
return true;
} else {
if (!exec("ping -q -c1 ".$ip_addr." >/dev/null 2>&1 ; echo $?"))
return true;
}
return false;
}
}
$ip_addr = "127.0.0.1"; // ı want a this line come from database for every IP adress //
if ((new CheckDevice())->ping($ip_addr))
echo "Acık";
else
echo "Kapalı";
?>