mirror of
https://github.com/parsecsv/parsecsv-for-php.git
synced 2026-02-19 00:36:38 +00:00
Merge pull request #18 from parsecsv/williamknauss-new-issue-14
williamknauss new issue 14
This commit is contained in:
@@ -459,7 +459,12 @@ class parseCSV {
|
|||||||
|
|
||||||
if ( $filename !== null ) {
|
if ( $filename !== null ) {
|
||||||
header('Content-type: application/csv');
|
header('Content-type: application/csv');
|
||||||
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
header('Content-Length: '.strlen($data));
|
||||||
|
header('Cache-Control: no-cache, must-revalidate');
|
||||||
|
header('Pragma: no-cache');
|
||||||
|
header('Expires: 0');
|
||||||
|
header('Content-Disposition: attachment; filename="'.$filename.'"; modification-date="'.date('r').'";');
|
||||||
|
|
||||||
echo $data;
|
echo $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user