
-
织梦技巧
解决方法 打开 /dede/file_class.php 找到,大概在161行 else if ( substr ($filename, -strlen($fileexp))===$fileexp) 改成 else if (preg_match( /\.( .$fileexp. )$/ , $filename)) 完成,重新选择压缩包提交就可以了 自动获取压缩包里图片的名称 如果想要让每个图片都自动获取压缩包里图片的名称的话,你可以这样做 打开 /dede/album_add.php 找到,大概在201行...
68