Maison  >  Article  >  développement back-end  >  php实现ping

php实现ping

高洛峰
高洛峰original
2016-12-02 10:23:291444parcourir

<?php
// created by joe lumbroso 
// see some other good php3 scripts 
// goto http://www.dtheatre.com/scripts
echo &#39;<font color=\&#39;red\&#39;><blink><b>Pinging</b></blink></font><br>&#39;; 
$to_ping = &#39;dtheatre.com&#39;; 
$count = 3; 
$psize = 65; 
echo &#39; Please be patient, this can take a few moments...\n<br><br>&#39;; 
flush();
while (1) { 
?> 
<pre class="brush:php;toolbar:false"> 
<? 
exec(&#39;ping -c $count -s $psize $to_ping&#39;, $list); 
for ($i=0;$i < count($list);$i ) { 
print $list[$i].&#39;\n&#39;; 
} 
?> 


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn