私のプログラムでは、あらゆるタイプのファイルをアップロードして、それを直接表示またはダウンロードできます (upload_and_show.php3):
if($submit)
{
header("Expires: Mon, 26 Jul 1997 05 :00:00 GMT");
header("キャッシュ制御: no-cache、must-revalidate");
header("content-type:application/octet-stream");
header( "content-disposition:inline;filename=$form_data");
header("content-description:php3 で生成されたデータ");
$fd = fopen($form_data,"r"); $string = fread($fd,200)){
Echo $string;
}
fclose($fd)
}
else { ?>
http://www.bkjia.com/PHPjc/532144.html
www.bkjia.com