How to ping from php
< ?php
function ping($host) {
exec(sprintf('ping -c 1 -W 5 %s', escapeshellarg($host)), $res, $rval);
return $rval === 0;
}
$hosts_to_ping = array('127.0.0.1');
?>
< ?php foreach ($hosts_to_ping as $host): ?>
< ?php echo $host; ?>
< ?php $up = ping($host); ?>
< ?php echo $up ? 'on' : 'off'; ?>
< ?php endforeach; ?>
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.