首页 > 教程 >

PHPcms远程图片本地化增加图片类型和后缀的方法

2023-02-14教程围观

简介如要增加bmpphpcmslibsclasses找到attachment.class.phpfunctiondownload在$ext='gif|jpg|jpeg|bmp|png|后面增加即可如果后缀需要替换在$upload_func=$this->upload_func;下面增加$newfile=str_replace(".jpgs",".jpg",$newfile);将returnstr_re

  

如要增加bmp

phpcmslibsclasses

找到attachment.class.php

function download

$ext = 'gif|jpg|jpeg|bmp|png| 后面增加即可

如果后缀需要替换

$upload_func = $this->upload_func;

下面增加

$newfile=str_replace(".jpgs",".jpg",$newfile);

return str_replace($oldpath, $newpath, $value); 替换为

return str_replace(".jpgs",".jpg",str_replace($oldpath, $newpath, $value));



下载链接:网站源码/小程序源码/网站模板下载

Tags: 方法 图片 类型 增加 本地化