快速业务通道

PHP判断服务器端口是否打开的代码

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23

记录一下,以后备用

  1. <?php 
  2. $host = ''www.google.com''; //要ping的地址,也可以是IP  
  3. $port = ''80''; //要ping的端口  
  4. $num = 3;  
  5. function microtime_float()  
  6. {  
  7. list($usec, $sec) = explode(" ", microtime());  
  8. return ((float)$usec + (float)$sec);  
  9. }  
  10. function ping($host,$port)  
  11. {  
  12. $time_start = microtime_float();  
  13. $ip = gethostbyname($host);  
  14. $fp = @fsockopen($host,$port,&$errno,&$errstr,1);  
  15. if(!$fp) return ''replay time out!'';  
  16. $get = "GET / HTTP/1.1\r\nHost:".$host."\r\nConnection: Close\r\n\r\n";  
  17. @fputs($fp,$get);  
  18. @fclose($fp);  
  19. $time_end = microtime_float();  
  20. $time = $time_end - $time_start;  
  21. $time = ceil($time * 1000);  
  22. return ''Reply from ''.$ip.'': time=''.$time.''ms<br />'';  
  23. }  
  24. echo ''Pinging ''.$host.'' [''.gethostbyname($host).''] with Port:''.$port.'' of data:<br /><br />''."\r\n";  
  25. for($i = 0;$i < $num;$i++)  
  26. {  
  27. ping($host,$port);  
  28. sleep(1);  
  29. ob_flush();  
  30. flush();  
  31. }  
  32. ?> 

本文摘自 http://www.cnblogs.com/luoine/archive/2010/12/01/1893156.html

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号