php判断远程文件是否存在


php判断远程文件是否存在

方法一(需要开启allow_url_fopen):



<?php
$url = "http://cn.wordpress.org/wordpress-3.3.1-zh_CN.zip";
$fileExists = @file_get_contents($url,null,null,-1,1) ? true : false ;
echo $fileExists; //返回1,就说明文件存在。
?>

方法二(需要服务器支持Curl组件):



<?php

function check_remote_file_exists($url) {
$curl = curl_init($url); // 不取回数据
curl_setopt($curl, CURLOPT_NOBODY, true);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET'); // 发送请求
$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://cn.wordpress.org/wordpress-3.3.1-zh_CN.zip";
echo check_remote_file_exists($url);//返回1,说明存在。

?>


发表回复