0

コマンドを使用ram fileしたディレクトリに作成しました:/mnt/tempram/temp1

mkdir -p /mnt/tempram
mount -t ramfs -o size=128K ramfs /mnt/tempram

今、このファイルをダウンロードするためのphpファイルを作成しました

<?php
$file = "/mnt/tempram/temp1";
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
}
?> 

このファイルにアクセスできません。Apache Web サーバーに関するこの問題を理解しています。助けてください!!

4

0 に答える 0