⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ajaxmailattachment.php

📁 有关ajax的开发方法以及源码,希望对大家有所帮组。
💻 PHP
字号:
<?php
    require_once("inc/config.inc.php");
    require_once("inc/pop3lib/pop3.class.php");
    require_once("inc/pop3lib/pop3message.class.php");
    require_once("inc/pop3lib/pop3header.class.php");
    require_once("inc/pop3lib/pop3attachment.class.php");
    require_once("inc/AjaxMail.inc.php");
    
    //get information
    $id = $_GET["id"];

    //create new mailbox
    $mailbox = new AjaxMailbox();
    
    //get the attachment
    $attachment = $mailbox->getAttachment($id);

    //headers
    header("Content-Type: $attachment->contentType");
	  header("Content-Disposition: attachment; filename=$attachment->filename"); 

    //output the body
    echo $attachment->data;   
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -