PHP判断网络文件存在

PHP中文网
リリース: 2016-05-25 17:10:44
オリジナル
969 人が閲覧しました

方法一:

 
<?php
    $url = "http://http://github.codeigniter.org.cn/download/CodeIgniter_2.1.2.zip";
    $fileExists = @file_get_contents($url, null, null, -1, 1) ? true : false;
    echo $fileExists; //返回1,就说明文件存在。
?>
ログイン後にコピー

方法二:

 
<?php
function check_remote_file_exists($url) {
    $curl = curl_init($url); // 不取回数据
    curl_setopt($curl, CURLOPT_NOBODY, true);
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, &#39;GET&#39;); // 发送请求
    $result = curl_exec($curl);
    $found = false; // 如果请求没有发送失败
    if ($result !== false) {
 
        /** 再检查http响应码是否为200 */
        $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
        if ($statusCode == 200) {
            $found = true;
        }
    }
    curl_close($curl);
 
    return $found;
}
 
$url = "http://github.codeigniter.org.cn/download/CodeIgniter_2.1.2.zip";
echo check_remote_file_exists($url); // 返回1,说明存在。
 
?>
ログイン後にコピー


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート