\Phpcmf\Hooks::on('cms_view', function($data, $file) { if (!IS_ADMIN) { $code = ...
foreach($attatchsarray as $key=>$value){ $downpath=dirname(ROOT_PATH).get_file_path($value); $downpathname=get_file_name($value); //改文件一定得为本地地址不可以为域名地址 $zip->addFile($downpath, basename($downpathname)); //basename($downpathname)这个是压缩包里面的文件名称 } } $zip...
* desription 压缩图片 * @param sting $imgsrc 图片路径 * @param string $imgdst 压缩后保存路径 */ public function compressedImage($imgsrc, $imgdst) { list($width, $height, $type) = getimagesize($imgsrc); $new_width = $width;//压缩后的图片宽 $new_height = $height;//压缩后的图片...