读取0字节图片的异常处理

hotfix/paypal-note
尹诚诚 4 years ago
parent 6ea62d3365
commit 583c3ed37b

@ -125,8 +125,8 @@ class html_optimize_lib
$file_path = $imagesPath . $img_src_urls['path'];
}
if (is_file($file_path)) {
$properties = getimagesize($file_path);//获取图片属性
if (!empty($properties[0]) && !empty($properties[1])) {
$properties = getimagesize($file_path);//获取图片属性读取失败返回false
if ($properties && !empty($properties[0]) && !empty($properties[1])) {
$image->width = $properties[0];
$image->height = $properties[1];
}

Loading…
Cancel
Save