17 lines
676 B
PHP
Executable File
17 lines
676 B
PHP
Executable File
<?php
|
|
require_once __DIR__ . '/includes/auth.php';
|
|
require_once __DIR__ . '/includes/functions.php';
|
|
requireAdmin();
|
|
|
|
header('Content-Type: text/csv; charset=utf-8');
|
|
header('Content-Disposition: attachment; filename=redemption_code_template.csv');
|
|
|
|
// BOM for Excel UTF-8
|
|
echo "\xEF\xBB\xBF";
|
|
|
|
$handle = fopen('php://output', 'w');
|
|
fputcsv($handle, ['兑换码名称', '批次号', '类型', '兑换码', '面值', '过期时间', '出货价一档', '出货价二挡']);
|
|
fputcsv($handle, ['示例券', 'BATCH001', '1', 'ABC123XYZ', '100', '2027-12-31 23:59:59', '80', '70']);
|
|
fputcsv($handle, ['示例券2', 'BATCH001', '1', 'DEF456UVW', '50', '', '', '']);
|
|
fclose($handle);
|