我创建了一个带有两个输入参数的函数。 1输入图像url,另一个基本上是一个字符串,这是图像的源名称。我试图以这样的方式创建它,如果它无法获取图像,返回默认的图像路径。但是,如果它无法获取图像,则会起作用,但有时它无法工作并创建基本上空的图像文件,因此我的想法是图像无法完全下载。
我的代码如下。
$list = gwmi -namespace root\wmi -Class Registry* -list
foreach($element in $list) {
([wmiclass]$element).gettext("mof")
}
您是否知道如何确保仅保存工作图像,而不是空图像,如果图像为空,则返回默认新闻图像。
希望我足够清楚。
答案 0 :(得分:1)
您可以使用getimagesize(“img”)并检查类型。
答案 1 :(得分:1)
谢谢,使用getimagesize函数修改了函数后解决了我的问题!!
function saveIMG($img_link, $source){
$name = date("Y-m-d_H_i_s_") . mt_rand(1,999) . "_".$source.".jpg";
$ch = curl_init($img_link);
curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$result = curl_exec($ch);
if ($result === FALSE){
$name = "images/news_default.jpg";
return $name;
}
else {
$fp = fopen("images/$source/$name", 'w');
fwrite($fp, $result);
curl_close($ch);
list($width, $height, $type, $attr) = getimagesize($_SERVER['DOCUMENT_ROOT'] . "/project/images/$source/$name");
if (empty($width)){
unlink('images/$source/$name');
$name = "images/news_default.jpg";
return $name;
}
if (!empty($width)){
$name ="images/$source/$name";
return $name;
}
fclose($fp);
}
}