怎样做页面HTTP状态查询,该如何处理

WBOY
Release: 2016-06-13 13:41:50
Original
749 people have browsed it

怎样做页面HTTP状态查询
怎样做页面HTTP状态查询
http://tool.chinaz.com/pagestatus/
就像这个一样的

------解决方案--------------------
读http头啊
------解决方案--------------------
var_dump(getallheaders());
------解决方案--------------------

PHP code

function curl_file_get_contents($durl){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $durl);
    curl_setopt($ch, CURLOPT_TIMEOUT, 5);
    curl_setopt($ch, CURLOPT_HEADER, true);
    curl_setopt($ch, CURLOPT_NOBODY, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $r = curl_exec($ch);
    //$http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
    return $r;
} <div class="clear">
                 
              
              
        
            </div>
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