`
日光倾城。
  • 浏览: 87814 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

Call to undefined function image_type_to_extension

    博客分类:
  • php
阅读更多
困扰了我很久的一个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
分享到:
评论
1 楼 柏新星 2012-04-26  
修改 Include/Image.class.php 第34行
我这 是43行

相关推荐

    ThinkPHP做文字水印时提示call an undefined function exif_imagetype()解决方法

    在使用ThinkPHP框架进行项目开发时,可能会遇到在尝试给图片添加文字水印的过程中,遇到一个错误提示:“call an undefined function exif_imagetype()”。这通常意味着在PHP的配置中,与图像类型检测相关的exif扩展...

    ImageFunction

    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 -> ...

    php.ini-development

    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 ...

    Senfore_DragDrop_v4.1

    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 ...

    ThinkPHP3.2.1图片验证码实现方法

    而“Call to undefined function Think\imagecreate()”错误表示PHP没有加载GD库,这时候需要检查并启用`php_gd2.dll`扩展,在php.ini文件中找到该扩展并去掉前面的分号即可。 5. ThinkPHP文档:在开发过程中,应...

Global site tag (gtag.js) - Google Analytics