Heim  >  Artikel  >  php教程  >  php模拟ping命令的方法

php模拟ping命令的方法

WBOY
WBOYOriginal
2016-06-21 08:49:18986Durchsuche

本篇文章主要说下如何使用php模拟我们常用的DOS命令ping命令的方法,这里主要用到的是php的内置函数exec来调用系统的ping命令,从而实现ping命令功能的。

<?php $to_ping='www.Alixixi.com';
$count=2;
$psize=66;
echo "正在执行php ping命令,请等待...\n<br><br>";
flush();
while(1){
	echo "<pre class="brush:php;toolbar:false">";
	exec("ping -c $count -s $psize $to_ping", $list);
	for($i=0;$i<count print echo>";
	flush();
	sleep(3);
}</count>

注意使用exec函数必须需要服务器支持调用系统内置函数才行。另外也可以使用system等php内置函数来实现这个功能。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn