<?php
function force_download($file,$filename)
{
if ((isset($file))&&(file_exists($file))) {
header("Content-length: ".filesize($file));
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=".$filename);

readfile($file);
} else {
echo "No file selected";
}
}


force_download($_SERVER['DOCUMENT_ROOT']."/index.htm","index.htm");

?>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 stockwfj3 的頭像
    stockwfj3

    程式設計@筆記

    stockwfj3 發表在 痞客邦 留言(0) 人氣()