Home > Article > Backend Development > PHP implementation of ping example code
pingIntroduction:
Ping is a command under Windows, Unix and Linux systems. Ping also belongs to a communication protocol and is part of the TCP/IP protocol. You can use the "ping" command to check whether the network is connected, which can help us analyze and determine network faults. Application format: Ping space IP address. This command can also be used with many parameters. Specifically, type Ping and press Enter to see detailed instructions.
PING (Packet Internet Groper), Internet packet explorer, a program used to test the amount of network connections. Ping sends an ICMP (Internet Control Messages Protocol), which is the Internet Message Control Protocol; an echo request message is sent to the destination and reports whether the desired ICM Echo (ICMP echo response) is received. It is a command used to check whether the network is smooth or the network connection speed. As an administrator or hacker living on the network, the ping command is the first DOS command that must be mastered. The principle it uses is this: using the uniqueness of the IP address of the machine on the network, send a message to the target IP address. A data packet, and then ask the other party to return a data packet of the same size to determine whether the two network machines are connected and what the delay is.
Ping refers to end-to-end connectivity, which is usually used as an availability check. However, some viruses and Trojans will force a large number of remote execution ping commands to seize your network resources, causing the system to slow down and the network speed to slow down. . Strictly prohibit ping intrusion as a basic function of most firewalls for users to choose. Under normal circumstances, if you are not using it as a server or conducting network testing, you can safely select it to protect your computer.
<?php // created by joe lumbroso // see some other good php3 scripts // goto http://www.dtheatre.com/scripts echo "<font color=\"red\"><blink><b>Pinging</b></blink></font><br>"; $to_ping = "dtheatre.com"; $count = 3; $psize = 65; echo " Please be patient, this can take a few moments...\n<br><br>"; flush(); while (1) { ?> <pre class="brush:php;toolbar:false"> <? exec("ping -c $count -s $psize $to_ping", $list); for ($i=0;$i < count($list);$i++) { print $list[$i]."\n"; } ?>flush(); sleep(3); } ?>
The above is the detailed content of PHP implementation of ping example code. For more information, please follow other related articles on the PHP Chinese website!