TP5 如何屏蔽该错误提示

浏览:1867 发布日期:2019/01/24 分类:求助交流



[1] ErrorException in common.php line 128
gd-webp cannot get webp info




异常捕获都无法 获取错误



if (strstr($filepath, '.webp')) {

try {
@$image = @imagecreatefromwebp($filepath);
} catch (\think\exception\ErrorException $e) {
echo '错误';
}
if ($image) {
return $image;
}
}

最佳答案
评论( 相关
后面还有条评论,点击查看>>