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

📄 download.php

📁 This is the script which used on 10minutemail.com for temporary email.
💻 PHP
字号:
<?php

/** 
 * GentleSource Comment Script
 * 
 * (C) Ralf Stadtaus http://www.gentlesource.com/
 */




// Settings
define('T12L_ROOT', './');
define('T12L_LOGIN_LEVEL', 0);


// Include
require T12L_ROOT . 'include/coresmall.inc.php';



header('Content-Type: text/html; charset=' . $t12l['text']['txt_charset']);




// Download e-mails
if (t12l_gpc_vars('get') == 'mail' 
        and t12l_gpc_vars('key') == $t12l['download_mail_process_key']) {
    
    require 'email.class.inc.php';            
    $mail = new t12l_email();
    $mail->trigger_mail_download();
}



if ($t12l['debug_mode'] == true) {
    $system_messages    = t12l_system_debug::get_messages('system');
    $debug_messages     = t12l_system_debug::get_messages('debug');
    $error_messages     = t12l_system_debug::get_messages('error');
    t12l_print_a($system_messages);
    t12l_print_a($debug_messages);
    t12l_print_a($error_messages);
}





?>

⌨️ 快捷键说明

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