不幸的是,我不能使用任何的fopen或的file_get_contents,所以我的工作腳本已經成爲一個破碎的一個使用捲曲:在PHP拼搶CSV超過捲曲
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$tmp = curl_exec($ch);
curl_close($ch);
header("Content-type: application/csv");
header(Content-Disposition: attachment; filename=$start.csv");
header("Pragma: no-cache");
header("Expires: 0");
echo $tmp;
URL將在一個CSV文件 - ,而fopen版本之前的工作。我得到的只是一個空的CSV文件,返回給瀏覽器。
謝謝。
在發送''csv''頭文件之前先試着看看是否有任何輸出 –