require_once 'Net/Ping.php';
string Net_Ping::ping (string host)
string Net_Ping::ping
Executes a ping command
string $host - the name of the server or the IP-adress
string - the return message of the ping command
This function can not be called statically.
Example 48-1. Sending a ping request
<?php require_once 'Net/Ping.php' ; $ping = new Net_Ping; $ping->setArgs(array("count" => 5, "size" => 32, "ttl" => 512 ) ); var_dump($ping->ping("example.com")); ?>