Home  >  Article  >  Backend Development  >  php读取csv实现csv文件下载功能_php实例

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

WBOY
WBOYOriginal
2016-06-07 17:22:44865browse

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

复制代码 代码如下:

$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