Home  >  Article  >  php教程  >  php读取csv实现csv文件下载功能

php读取csv实现csv文件下载功能

WBOY
WBOYOriginal
2016-06-06 20:26:081373browse

用PHP代码下载CSV文件,可以是字符串,也可以是一个CSV文件,下面直接上代码

第一段是读文件,,下载。
第二段是字符串下载。

复制代码 代码如下:


$fileName = "prefs.csv";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $fileName);
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($fileName));
readfile($fileName);

复制代码 代码如下:


$fileName = "pref_" . date("YmdHis") . ".csv";
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename=' . $fileName);
echo $csv;


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn