Home > Backend Development > PHP Tutorial > php读取csv实现csv文件下载功能_PHP

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-01 11:57:58
Original
1235 people have browsed it

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

复制代码 代码如下:
$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;

Related labels:
source:php.cn
Statement of this Website
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
Latest Issues
Use php to merge csv with the same format
From 1970-01-01 08:00:00
0
0
0
Reverse PHP reading of CSV file
From 1970-01-01 08:00:00
0
0
0
Compare CSV rows in php
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template