Welcome to the Linux community forum, and interact with 2 million technical staff to access the method of using php to implement the ping command: the implementation method is actually very simple, mainly using the php built-in function exec to call the ping command, to implement the ping function. you can also use php built-in functions such as system. If you are interested, you can view the manual. the implementation code is as follows :? Php $ to_ping
Welcome to the Linux community forum and interact with 2 million technical staff> go to the php ping command implementation method: the implementation method is actually very simple, mainly using the php built-in function exec to call the ping command, to implement the ping function. you can also use php built-in functions such as system. If you are interested, you can view the manual. the implementation code is as follows :? Php $ to_ping
Welcome to the Linux community forum and interact with 2 million technicians>
Use php to implement the ping command:
The implementation method is actually very simple. It mainly uses the php built-in function exec to call the ping command to implement the ping function. you can also use php built-in functions such as system. If you are interested, you can view the manual. the implementation code is as follows:
$ To_ping = "phpzixue.cn ";
$ Count = 2;
$ Psize = 66;
Echo "Please be patient, this can take a few moments... \ n
";
Flush (); while (1 ){
Echo"
”; exec(“ping -c $count -s $psize $to_ping”, $list);
for ($i=0;$i < count($list);$i++) {
print $list[$i].“\n”;
}
echo “
";
Flush ();
Sleep (3 );
}
?>