如要增加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));