iconv( string $in_charset,string $out_charset,string $string)
$in_charset 输入的字符集;
$out_charset 输出的字符集
$string 要转换的字符串
见告浏览器这是下载文件,须要设置下载header()头
//见告客户端浏览器,区分不同种类的数据
header(\"大众Content-type: application/octet-stream\"大众);
//见告客户端浏览器返回的文件大小是按照字节进行打算的
header(\"大众Accept-Ranges: bytes\"大众);
//见告浏览器返回的文件大小,须要filesize()获取文件大小
header(\"大众Accept-Length:\公众.filesize($filepath));
//见告浏览器下载文件的名称须要pathinfo()函数,
header(\公众Content-Disposition: attachment; filename=\"大众.$downloadName);
$downloadName参数必须有文件的类型eg:
a.php 搞笑.zip
pathinfo()该函数成功则返回一维渡数组
var_dump(pathinfo('./小学(1).jpg'));
php5.3
php5.6
在php5.3中如果文件名全中文pathinfo的返回值filename就会为空,为空会发生什么?下载的文件根本打不开
打开文件fopen(),读取文件fread(),测试文件指针是否到了却束位置feof(),关闭文件fclose()用一个函数方便调用,完全代码截图