PHP將Excel匯入資料庫及資料庫資料匯出至Excel的方法

來源:互聯網
上載者:User

         本文執行個體講述了PHP將Excel匯入資料庫及資料庫資料匯出至Excel的方法。分享給大家供大家參考。具體實現方法如下:

         一.匯入

          匯入需要使用能讀取Excel的組件,網上也有比較好的組件,這裡分享我使用的:下載 提取碼:vxyn。(注意兩個檔案有參考關聯性)

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 <?php //傳入要匯入的Excel的檔案名稱 function import_to_DB($filename) { require_once'reader.php'; $data = new Spreadsheet_Excel_Reader(); //建立讀取Excel的對象 $data->setOutputEncoding('utf-8'); //設定讀取Excel內容後輸出的字元編碼 $data->read("data/Excel/{$filename}.xls"); $db = mysql_connect('localhost', '使用者名稱', '密碼') or die("Could not connect to database."); //串連資料庫 mysql_query("set names 'uft8'"); //輸出中文 mysql_select_db('資料庫名'); //選擇資料庫 error_reporting(E_ALL ^ E_NOTICE); for ($i = 1; $i <= $data->sheets[0]['numRows']; $i++) { echo $data->sheets[0]['cells'][$i][列數]; //這裡可以把每一行相應列的值插到資料庫中,如: /* $sql="insert "表名" values(對應項...)"; mysql_query($sql); 可加上錯誤判斷 */ } ?>

         總之,能夠讀出表格中每一行中的相應列$data->sheets[0][行][列]的值,插入操作就好辦了。

          二.匯出

         匯出可以利用MIME協議輕鬆匯出表格檔案,不用依賴任何組件。按如下格式設定header即可匯出Excel,同時瀏覽器進行下載

?
1 2 3 4 header('Content-type: text/html; charset=utf-8'); header("Content-type:application/vnd.ms-excel;charset=UTF-8"); //application/vnd.ms-excel指定輸出Excel格式 header("Content-Disposition:filename=表格檔案名稱.xls"); //輸出的表格名稱

        完整代碼如下:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php header('Content-type: text/html; charset=utf-8'); header("Content-type:application/vnd.ms-excel;charset=UTF-8"); header("Content-Disposition:filename=表格檔案名稱.xls"); $conn = mysql_connect("localhost","root","資料庫密碼") or die("不能串連資料庫"); mysql_select_db("資料庫名", $conn); mysql_query("set names 'UTF-8'"); $sql="select * from 表名 where 條件"; $result=mysql_query($sql); echo "表頭1t表頭2t表頭3n"; while($row=mysql_fetch_array($result)){ echo $row[0]."t".$row[1]."t".$row[2]."n"; } ?>

        這裡其實t就是換格,n就是換行。在一個網頁中設定這個php檔案的連結,當點擊時瀏覽器會自動把傳過來的流儲存為Excel檔案。

         希望本文所述對大家的php程式設計有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.