7

这会吐出一大堆 NO,但图像在那里并且路径正确,因为它们由<img>.

foreach ($imageNames as $imageName) 
{
    $image = 'http://path/' . $imageName . '.jpg';
    if (file_exists($image)) {
        echo  'YES';
    } else {
        echo 'NO';
    }
    echo '<img src="' . $image . '">';
}
4

5 回答 5

16

file_exists使用本地路径,而不是 URL。

一个解决方案是这样的:

$url=getimagesize(your_url);

if(!is_array($url))
{
     // The image doesn't exist
}
else
{
     // The image exists
}

有关更多信息,请参阅此。

此外,寻找响应标头(使用该get_headers函数)将是一个更好的选择。只需检查响应是否为 404:

if(@get_headers($your_url)[0] == 'HTTP/1.1 404 Not Found')
{
     // The image doesn't exist
}
else
{
     // The image exists
}
于 2013-02-11T05:06:24.073 回答
15

file_exists 查找本地路径,而不是“http://”URL

采用:

$file = 'http://www.domain.com/somefile.jpg';
$file_headers = @get_headers($file);
if($file_headers[0] == 'HTTP/1.1 404 Not Found') {
    $exists = false;
}
else {
    $exists = true;
}
于 2013-02-11T05:04:51.930 回答
2
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if($retcode==200) echo 'YES';
else              echo 'NO';
于 2013-02-11T05:11:59.323 回答
1

这就是我所做的。它通过获取标题涵盖了更多可能的结果,因为如果您无法访问该文件,它并不总是只是“404 Not Found”。有时它是“永久移动”、“禁止”和其他可能的消息。但是,如果文件存在并且可以访问,则只是“ 200 OK”。HTTP 的部分后面可以有 1.1 或 1.0,这就是为什么我只是使用 strpos 来在每种情况下都更可靠。

$file_headers = @get_headers( 'http://example.com/image.jpg' );

$is_the_file_accessable = true;

if( strpos( $file_headers[0], ' 200 OK' ) !== false ){
    $is_the_file_accessable = false;
}

if( $is_the_file_accessable ){
    // THE IMAGE CAN BE ACCESSED.
}
else
{
    // THE IMAGE CANNOT BE ACCESSED.
}
于 2016-01-10T00:15:28.860 回答
0
function remote_file_exists($file){

$url=getimagesize($file);

if(is_array($url))
{

 return true;

}
else {

 return false;

}

$file='http://www.site.com/pic.jpg';

echo remote_file_exists($file);  // return true if found and if not found it will return false
于 2013-02-11T05:41:02.327 回答