-1
如何在php codeigniter中以CSV格式進行報告如何在php codeigniter中以CSV格式進行報告
如何在php codeigniter中以CSV格式進行報告如何在php codeigniter中以CSV格式進行報告
從不需要codeigniter。
fgetcsv是你的朋友。
從PHP手冊:
<?php
$row = 1;
if (($handle = fopen("test.csv", "r")) !== FALSE) {
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
$num = count($data);
echo "<p> $num fields in line $row: <br /></p>\n";
$row++;
for ($c=0; $c < $num; $c++) {
echo $data[$c] . "<br />\n";
}
}
fclose($handle);
}
?>
取( '路徑/到/報告')? ;-)你到底有什麼問題? – MiseryIndex
您的問題需要一些細節和更清晰的聲明。你想製作或導入CSV嗎?有什麼限制? –