1

我正在从嵌套数组创建一个 csv 文件,它可以与本地主机中的 csv 文件的下载链接一起正常工作,但在实时主机上它不会下载。这是我的 php 文件中的内容:

标头声明:

/**
* Declare headers for CSV
 */
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename=registration.csv");
header("Pragma: no-cache");
header("Expires: 0");

输出 csv 文件的函数:

/**
* Function will output the scsv file
* @param the csv $data in nested array form array(array("","",""),array("",""...)...)
*/
function outputCSV($data) {
$outstream = fopen("php://output", "w");
function __outputCSV(&$vals, $key, $filehandler) {
    fputcsv($filehandler, $vals); // add parameters if you want
}
array_walk($data, "__outputCSV", $outstream);
fclose($outstream);
}

我在本地使用的链接:

<a href=".../csv/csv.php">Download CSV</a>

不适用于 Live 网站。无需下载它,只需将我带到 csv.php 页面并以这样的字符串输出数组。

...ID,“一号教练”,“二号教练”,工作,手机,电子邮件,...

4

2 回答 2

1

尝试将 csv 硬编码到代码中。将这些行替换为您必须查看传递的数据是否包含错误字符的行。也许指定字符集会有所帮助。

header('Content-Type: text/csv; charset=utf-8');
header('Content-Disposition: attachment; filename=data.csv');
$output = fopen('php://output', 'w');
fputcsv($output, array('Column 1', 'Column 2', 'Column 3'));

如此处所述:

http://code.stephenmorley.org/php/creating-downloadable-csv-files/

于 2012-12-20T17:20:50.093 回答
0

我没有准备好真正调试您的代码。如果你愿意,你可以试试这个。我知道它有效。

$out = fopen("php://temp", 'r+');
while (($row = $res->fetch(Zend_Db::FETCH_NUM)) != false) {
    fputcsv($out, $row, ',', '"');
}                       
rewind($out);
$csv  = stream_get_contents($out);
header("Content-Type: application/csv;");
header("Content-Disposition: attachment; filename=\"foo.csv\"");        
header("Pragma: no-cache");
header("Expires: 0");        
echo $csv;
exit(0); 

根据需要调整循环以迭代您的结果。

于 2012-12-20T17:20:59.430 回答