這篇文章帶給大家的內容是關於php如何快速匯出資料庫到csv(程式碼實現),有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
需要在瀏覽器頁面,透過下載按鈕將資料庫全部匯出到本機.
#每讀一行資料庫記錄,echo一行到輸出;
//导出函数,参数$mycli已打开数据库的mycli对象 function exportDbTable($mysqi){ //首先输出头部 header("Content-type:text/csv;"); header("Content-Disposition:attachment;filename=" . "FixedAssets.csv"); header('Cache-Control:must-revalidate,post-check=0,pre-check=0'); header('Expires:0'); header('Pragma:public'); $tbName = '表名'; $output = fopen('php://output', 'w'); //打开输出 //先获取一行,以便生成csv的首行, 列名 $sql="select * from {$tbName} limit 1"; $res = $mysqli->query($sql); if(!$res) return; //错误处理 $row = $res->fetch_assoc() fputcsv($output, array_keys($row)); //输出csv头部 //导出表数据 $sql="select * from {$tbName}"; //导出表内容 $res = $mysqli->query($sql); while ($row = $res->fetch_assoc()) fputcsv($output, $row); fclose($output); }
相關推薦:
#以上是php如何快速匯出資料庫到csv(程式碼實作)的詳細內容。更多資訊請關注PHP中文網其他相關文章!