1
我想將數據導出爲CSV文件。 這是我的測試功能csv導出文件
private function exportToCSV()
{
$titles = array('one', 'two', 'three');
$delimiter = ',';
$filename = 'simple.csv';
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header('Content-Description: File Transfer');
header("Content-type: text/csv");
header("Content-Disposition: attachment; filename={$filename}");
header("Expires: 0");
header("Pragma: public");
$file = @fopen('php://output', 'w');
fwrite($file, implode($delimiter, $titles) . "\r\n");
fclose($file);
}
我運行一個模塊內的這個功能,我越來越有冠軍,但整個頁面的CSV文件爲好。如何只獲得只有標題的csv文件?
如果您可以提供一些示例輸入和結果輸出來演示您遇到的問題,這將會很有幫助。 – Trott
對不起,但我不明白什麼意思'整頁以及'?請更多解釋 – ZigZag
你對「整個頁面」的含義是什麼?網站的其他部分(你是否在CMS環境?)? 或者你的意思是說你只想下載對話框而不顯示新的空白頁面? – hbit