How PHP files are downloaded

Source: Internet
Author: User
Tags php download

1, php download schematic diagram

2. File Download Source code:
1234567891011121314151617181920212223242526 <?php$file_name="哈哈.jpg";//需要下载的文件$file_name=iconv("utf-8","gb2312","$file_name");$fp=fopen($file_name,"r+");//下载文件必须先要将文件打开,写入内存if(!file_exists($file_name)){//判断文件是否存在    echo "文件不存在";    exit();}$file_size=filesize("a.jpg");//判断文件大小//返回的文件Header("Content-type: application/octet-stream");//按照字节格式返回Header("Accept-Ranges: bytes");//返回文件大小Header("Accept-Length: ".$file_size);//弹出客户端对话框,对应的文件名Header("Content-Disposition: attachment; filename=".$file_name);//防止服务器瞬时压力增大,分段读取$buffer=1024;while(!feof($fp)){    $file_data=fread($fp,$buffer);    echo $file_data;}//关闭文件fclose($fp);?>
3, file encoding problem resolution method:

If the file name is Chinese, PHP function does not recognize the Chinese file name, generally if the program is encoded as Utf-8,php's function is older, can only recognize the gb2312 encoded in Chinese, so the Chinese with Iconv ("Original Code", "to turn to the code", "to transcode the string") function can be transcoded.

For example, to transcode a string from Utf-8 to gb2312

$file _name=iconv ("Utf-8", "gb2312", "$file _name");

How PHP files are downloaded

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.