Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17211 программистов и 1834 робота. Сейчас ищут 1624 программиста ...

Net_Ping::ping()

Вернуться к: Net_Ping

Net_Ping::ping()

Net_Ping::ping() – executes a ping command

Synopsis

require_once 'Net/Ping.php';

string Net_Ping::ping ( string host )

Executes a ping command

Parameter

  • string $host - the name of the server or the IP-adress

Return value

string - the return message of the ping command

Note

This function can not be called statically.

Example

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'));
}
?>


Вернуться к: Net_Ping

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware