欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

例子:用PHP实现上载任何类型的文件并可以直接显示或下载下来_PHP

程序员文章站 2022-06-13 23:37:05
...
我这个程序可以让你上传任何类型的文件并可以直接显示或下载下来(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 { ?>
  

   file description:

  
  
  
file to upload/store in database: