使用fput而不是回显到fopen打开的输出缓冲区有什么好处

时间:2013-11-20 02:48:19

标签: php

就像标题所说,我想知道使用fput而不是回显fopen打开的输出缓冲区的好处。我发布了this question,并被告知我应该使用fputs。为什么呢?

示例:

header('Content-Type: application/excel');
header('Content-Disposition: attachment; filename="sample.csv"');
$fp = fopen('php://output', 'w');
$data = $_POST['csv_holder'];
echo $data;
fclose($fp);

0 个答案:

没有答案