Net_Ping::ping() -- executes a ping command
Описание
Executes a ping command
Возвращаемое значение
string -
the return message of the ping command
Заметка
Эта функция не должна вызываться статически.
Пример
Пример 49-1. Sending a ping request <?php
require_once "Net/Ping.php";
$ping = Net_Ping::factory();
if (PEAR::isError($ping)) {
echo $ping->getMessage();
} else {
$ping->setArgs(array('count' => 2));
var_dump($ping->ping('example.com'));
}
?> |
|
HIVE: All information for read only. Please respect copyright! |
|