困扰了我很久的一个thinkphp问题,本地可以上传,但是服务器却无法上传图片,找了半天,问服务器商,他说不是自己的问题,只好自己看看问题所在,原来有些服务器上的php版本不够高,貌似这个函数要php5.X的5.0以上的版本。
在网上找了半天,找到了thinkphp官方论坛,找到了这篇文章:
http://bbs.thinkphp.cn/viewthread.php?tid=14195&highlight=Call%2Bto%2Bundefined%2Bfunction%2Bimage/_type/_to
好了,说说修改问题的方法吧:
修改 Include/Image.class.php 第34行
把这一行
$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));
}
源网址:
http://www.yueyuaner.com/?p=23
分享到:
相关推荐
在使用ThinkPHP框架进行项目开发时,可能会遇到在尝试给图片添加文字水印的过程中,遇到一个错误提示:“call an undefined function exif_imagetype()”。这通常意味着在PHP的配置中,与图像类型检测相关的exif扩展...
Call to undefined function exif_imagetype() 打开扩展 extension=php_exif.dll */ if($images -> add_watermark2() != -2){ header('content-type:image/jpeg;'); $content = file_get_contents($images -> ...
You can redirect all of the output of your scripts to a function. For ; example, if you set output_handler to "mb_output_handler", character ; encoding will be transparently converted to the ...
Delphi's THandle type when a HWND is passed to a function. E.g.: if (DragDetectPlus(THandle(MyControl->Handle), Point(X, Y))) { ... } * Virtual File Stream formats can only be pasted from the ...
而“Call to undefined function Think\imagecreate()”错误表示PHP没有加载GD库,这时候需要检查并启用`php_gd2.dll`扩展,在php.ini文件中找到该扩展并去掉前面的分号即可。 5. ThinkPHP文档:在开发过程中,应...