|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
给你的建议是,有些最常用的语句是需要记住的 比如if for while这些、其他的一般语句你只要知道有这个函数或者有这个功能就可以了,当你用的时候你可以凭借记忆搜索就可以了。 纪录一下,今后备用
- <?php $host = 'www.谷歌
.com'; //要ping的地址,也能够
是IP $port = '80'; //要ping的端口 $num = 3; function microtime_float() { list($usec, $sec) = explode(" ", microtime()); return ((float)$usec + (float)$sec); } function ping($host,$port) { $time_start = microtime_float(); $ip = gethostbyname($host); $fp = @fsockopen($host,$port,&$errno,&$errstr,1); if(!$fp) return 'replay time out!'; $get = "GET / HTTP/1.1\r\nHost:".$host."\r\nConnection: Close\r\n\r\n"; @fputs($fp,$get); @fclose($fp); $time_end = microtime_float(); $time = $time_end - $time_start; $time = ceil($time * 1000); return 'Reply from '.$ip.': time='.$time.'ms<br />'; } echo 'Pinging '.$host.' ['.gethostbyname($host).'] with Port:'.$port.' of data:<br /><br />'."\r\n"; for($i = 0;$i < $num;$i++) { ping($host,$port); sleep(1); ob_flush(); flush(); } ?>
复制代码 本文摘自 http://www.cnblogs.com/luoine/archive/2010/12/01/1893156.html
<P style="TEXT-INDENT: 2em">
多去关于PHP的网站,尤其有很多经典的文章,多读读这些文章显然是有好处的。 |
|