如何在php curl中检测URL Not Found Error?

前端之家收集整理的这篇文章主要介绍了如何在php curl中检测URL Not Found Error?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何使用PHP curl检测此错误?即使URL不存在,curl也会返回成功.
Not Found
The requested URL /foo/index.PHP/items/edit was not found on this server.

我的代码

$post_fields = array('info' => json_encode($fields));
    curl_setopt($ch,CURLOPT_URL,$url);
    curl_setopt($ch,CURLOPT_POST,count($post_fields));
    curl_setopt($ch,CURLOPT_POSTFIELDS,$post_fields);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
    curl_setopt($ch,CURLINFO_CONTENT_TYPE,'application/x-www-form-urlencoded charset=utf-8');

    $result = curl_exec($ch);
    echo $result;

    if(curl_error($ch)){
        $result = curl_error($ch);
        curl_close($ch);
        return $result;
    }else{
        curl_close($ch);
        return json_decode($result,true);

    }
使用它来获取HTTP状态代码
$code = curl_getinfo($ch,CURLINFO_HTTP_CODE);

如果是404,则表示无法找到请求URL.

注意:记得在curl_close($ch)之前发出这一行;

原文链接:https://www.f2er.com/php/137483.html

猜你在找的PHP相关文章