我试图从远程服务器下载图像,调整大小然后保存本地计算机。
为此,我使用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));
但这不起作用。
我做错了什么?
由于
答案 0 :(得分:5)
根据this page,file_exists无法检查远程文件。有人在评论中建议他们使用fopen作为解决方法:
<?php
function fileExists($path){
return (@fopen($path,"r")==true);
}
?>
答案 1 :(得分: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
}
答案 2 :(得分: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" />';
}
Nick称这个功能为#34;一个快速而讨厌的解决方案&#34;虽然它对我有用: - )