📄 zip_attachments.php
字号:
<?php/*Copyright Intermesh 2003Author: Merijn Schering <mschering@intermesh.nl>Version: 1.0 Release date: 08 July 2003This program is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2 of the License, or (at youroption) any later version.*/require_once("../../Group-Office.php");$GO_SECURITY->authenticate();$GO_MODULES->authenticate('email');require_once($GO_CONFIG->class_path."mail/imap.class.inc");require_once($GO_MODULES->class_path."email.class.inc");$mail = new imap();$email = new email();require_once ($GO_LANGUAGE->get_language_file('email'));$browser = detect_browser();//header('Content-Length: '.strlen($file));header('Expires: '.gmdate('D, d M Y H:i:s') . ' GMT');if ($browser['name'] == 'MSIE'){ header('Content-Type: application/download'); header('Content-Disposition: attachment; filename="'.$ml_attachments.'.zip"'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public');}else{ header('Content-Type: application/download'); header('Pragma: no-cache'); header('Content-Disposition: attachment; filename="'.$ml_attachments.'.zip"');}header('Content-Transfer-Encoding: binary');echo $email->get_zip_of_attachments($_REQUEST['account_id'],$_REQUEST['uid'], $_REQUEST['mailbox']);?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -