Files
web.ems/wxc2_omc/security/backupRestore/output_file.php
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

14 lines
414 B
PHP
Executable File

<?php
$directory=$_REQUEST['directory'];
$filename=$_REQUEST['filename'];
header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=$filename");
//use for download csv in https
header('Expires: 0');
header('Pragma: public');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Cache-Control: public');
readfile("$directory/$filename");
?>