我这个程序可以让你上传任何类型的文件并可以直接显示或下载下来(upload_and_show.php3):
if($submit)
{
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("content-type:application/octet-stream");
header("content-disposition:inline;filename=$form_data");
header("content-description:php3 generated data");
$fd = fopen($form_data,"r");
while($string = fread($fd,200)){
echo $string;
}
fclose($fd);
}
else { ?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号