程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP判斷服務器端口是否打開的代碼

PHP判斷服務器端口是否打開的代碼

編輯:PHP綜合
記錄一下,以後備用
  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. ?> 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved