Home  >  Article  >  Backend Development  >  PHP判断是否连接上网络的方法,php判断连接网络_PHP教程

PHP判断是否连接上网络的方法,php判断连接网络_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:48:06877browse

PHP判断是否连接上网络的方法,php判断连接网络

本文实例讲述了PHP判断是否连接上网络的方法。分享给大家供大家参考。具体实现方法如下:

首先写个函数

function varify_url($url){ 
$check = @fopen($url,"r"); 
if($check){ 
 $status = true; 
}else{ 
 $status = false; 
}  
return $status; 
}

接着在需要的地方直接调用即可

$url = "http://www.baidu.com"; 
if(varify_url($url)){ 
 echo "<div>Congratulation ! Your URL <a href=$url>$url</a> : is <b>valid </b></div>"; 
}else{ 
 echo "<div>Error ! Your URL : <a href=$url>$url</a> is <b>invalid </b></div>"; 
}

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1024907.htmlTechArticlePHP判断是否连接上网络的方法,php判断连接网络 本文实例讲述了PHP判断是否连接上网络的方法。分享给大家供大家参考。具体实现方法如下...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn