用php开发一个检测某网站是否在一般运行的小模块

WBOY
Release: 2016-06-13 11:57:08
Original
780 people have browsed it

用php开发一个检测某网站是否在正常运行的小模块
                    我的想法是构造一个http请求,看它返回的状态码。如果是200的话,证明这个网站是能正常访问的。

            使用了一个叫curl 的函数,能够获取状态码,
          但是发现了一个问题。当我只运行一次的时候能返回200代码,但是连续检测多个网站,就只返回0,如果网站不通,能返回404.
          可是正常网站还是返回0,有谁用过这个函数,能说说吗?
      

------解决方案--------------------
用get_headers函数也是可以的,如下DEMO

<br />header('Content-Type:text/html;Charset=UTF-8');<br />$result = @get_headers('http://www.qqhaowan.com');<br />if ($result) {<br />    print_r($result);<br />    if (strpos($result[0], '200')) {<br />        echo '网站能访问!';<br />    } else {<br />        echo '网站不能访问!';<br />    }<br />} else {<br />    echo '目标URL无法打开!';<br />}<br />
Copy after login

------解决方案--------------------
引用:
我的想法是构造一个http请求,看它返回的状态码。如果是200的话,证明这个网站是能正常访问的。

使用了一个叫curl 的函数,能够获取状态码,
但是发现了一个问题。当我只运行一次的时候能返回200代码,但是连续检测多个网站,就只返回0,如果网站不通,能返回404.
可是正常网站还是返回0,有谁用过这个函数,能说说吗?


测试过,可以循环检测。
<br /><?php<br /><br />$sites = array('http://www.baidu.com','http://www.21cn.com','http://www.sina.com.cn','http://www.csdn.net');<br /><br />foreach($sites as $site){<br />    echo $site.':'.checksite($site).'<br>';<br />}<br /><br />function checksite($url){<br />    $result = @get_headers($url);<br /><br />    if($result){<br />        if(strstr($result[0], '200')!=''){<br />            return true;<br />        }    <br />    }<br />    return false;<br />}<br /><br />?><br />
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template