PHP Sayfa Ping Süresini Yazıdırma

PHP Sayfa Ping Süresini Yazıdırma

Hostunuz veya localiniz üzerinden uzak bağlantı veya web adresinin ping süresini görebilceğiniz örnek kod.

<?php
function ping($host, $port, $timeout) { 
  $tB = microtime(true); 
  $fP = fSockOpen($host, $port, $errno, $errstr, $timeout); 
  if (!$fP) { return "down"; } 
  $tA = microtime(true); 
  return round((($tA - $tB) * 1000), 0)." ms"; 
}

//Echoing it will display the ping if the host is up, if not it'll say "down".
echo ping("www.google.com", 80, 10);  
?>