phpcms 无法显示缩略图 Call to undefined function image_type_to_extension
问题背景:
线下的phpcms项目没问题,线上的phpcms新添加的图片缩略图显示有问题,查看了一下php版本,线下是5.5的,线上的是5.1的
问题原因:
看了一下线上的错误日志,显示:
PHP Fatal error: Call to undefined function image_type_to_extension()
搜索发现image_type_to_extension这个方法是php5.2以后才有的。
解决办法:
1.升级php到5.2以上版本
2.修改源码,添加判断语句
- 打开`./phpcms/libs/classes/image.class.php`第37行
- 找到
$imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]),1));
将其替换为
if(function_exists(image_type_to_extension)){ $imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]),1)); }else{ $imagetype = strtolower(substr($img,strrpos($img,‘.‘)+1)); }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。