4

我试图从远程服务器下载图像,调整大小,然后将其保存在本地机器上。

为此,我使用 WideImage。

<?php 

include_once($_SERVER['DOCUMENT_ROOT'].'libraries/wideimage/index.php');

include_once($_SERVER['DOCUMENT_ROOT'].'query.php');    


do { 


wideImage::load($row_getImages['remote'])->resize(360, 206, 'outside')->saveToFile($_SERVER['DOCUMENT_ROOT'].$row_getImages['local']);}

while ($row_getImages = mysql_fetch_assoc($getImages)); 


?>

这在大多数情况下都有效。但它有一个致命的缺陷。

如果由于某种原因这些图像之一不可用或不存在。Wideimage 引发致命错误。防止下载可能存在的任何其他图像。

我试过检查文件是否存在这样

    do { 

if(file_exists($row_getImages['remote'])){

    wideImage::load($row_getImages['remote'])->resize(360, 206, 'outside')->saveToFile($_SERVER['DOCUMENT_ROOT'].$row_getImages['local']);}

}        
    while ($row_getImages = mysql_fetch_assoc($getImages)); 

但这不起作用。

我究竟做错了什么??

谢谢

4

3 回答 3

5

根据此页面, file_exists 无法检查远程文件。有人在评论中建议他们使用 fopen 作为解决方法:

<?php
function fileExists($path){
    return (@fopen($path,"r")==true);
}
?>
于 2011-05-06T14:57:37.167 回答
0

您可以通过 CURL 检查:

$curl = curl_init('http://example.com/my_image.jpg');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_NOBODY, TRUE);
$httpcode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);
if($httpcode < 400) {
  // do stuff
}
于 2011-05-06T15:02:03.287 回答
0

在网络上进行了一些挖掘之后,我决定请求 HTTP 标头,而不是 CURL 请求,因为显然它的开销较小。

这是对来自 PHP 论坛的 Nick 评论的改编:http: //php.net/manual/en/function.get-headers.php

function get_http_response_code($theURL) {
   $headers = get_headers($theURL);
   return substr($headers[0], 9, 3);
}
$URL = htmlspecialchars($postURL);
$statusCode = intval(get_http_response_code($URL));

if($statusCode == 200) { // 200 = ok
    echo '<img src="'.htmlspecialchars($URL).'" alt="Image: '.htmlspecialchars($URL).'" />';
} else {
    echo '<img src="/Img/noPhoto.jpg" alt="This remote image link is broken" />';
}

尼克将此功能称为“一个快速而讨厌的解决方案”,尽管它对我来说效果很好:-)

于 2016-08-03T00:14:26.710 回答