在PHP中,如何读取不可靠的网页? [英] In PHP, how do I read an unreliable web page?

查看:151
本文介绍了在PHP中,如何读取不可靠的网页?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在PHP中使用Curl读取不可靠的网页。由于服务器错误,该页面通常不可用。但是,如果可用,我仍然需要阅读。此外,我不希望网页的不可靠性影响我的代码。我想我的PHP失败优雅,继续前进。这是我到目前为止:

I'm trying to use Curl in PHP to read a unreliable web page. The page is often unavailable because of server errors. However, I still need to read it if it's available. Additionally, I don't want the unreliability of the web page to effect my code. I would like my PHP to fail gracefully and move on. Here is what I have so far:

<?php
    function get_url_contents($url){
        $crl = curl_init();
        $timeout = 2;
        curl_setopt ($crl, CURLOPT_URL,$url);
        curl_setopt ($crl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt ($crl, CURLOPT_CONNECTTIMEOUT, $timeout);
        $ret = curl_exec($crl);
        curl_close($crl);
        return $ret;
    }
    $handle = get_url_contents ( 'http://www.mydomain.com/mypage.html' );
?>


推荐答案

您可以测试HTTP代码,已通过测试HTTP响应代码成功检索。我不记得如果> 200和< 302是正确的代码范围,但在 http响应代码如果使用此方法。

You could test the HTTP code to see if the page was successfully retrieved by testing the HTTP Response code. I can't remember if >200 and <302 are the correct code ranges though, have a quick peak at http response codes If you use this method.

<?php
    function get_url_contents($url){
        $crl = curl_init();
        $timeout = 2;
        curl_setopt ($crl, CURLOPT_URL,$url);
        curl_setopt ($crl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt ($crl, CURLOPT_CONNECTTIMEOUT, $timeout);
        $ret['pagesource'] = curl_exec($crl);
        $httpcode = curl_getinfo($crl, CURLINFO_HTTP_CODE);
        curl_close($crl);

        if($httpcode >=200 && $httpcode<302) {
         $ret['response']=true;
        } else {
         $ret['response']=false;
        }

        return $ret;
    }
    $handle = get_url_contents ( 'http://192.168.1.118/newTest/mainBoss.php' );
    if($handle['response']==false){
          echo 'page is no good';
    } else {
             echo 'page is ok and here it is:' . $handle['pagesource'] . 'DONE.<br>';
    }

?>

这篇关于在PHP中,如何读取不可靠的网页?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆