php擷取excel表格中資料的小方法 然後就可以放到資料庫了

來源:互聯網
上載者:User

標籤:blog   http   io   os   ar   檔案   資料   div   sp   

現在又一個product.xml的表格檔案,要求取出其中資料 
資料如下: 

商品名 價格
iphone4s 4199
note2 3999
小米2 1999
iphone5 4899


1,將product.xml另存新檔product.csv檔案 
2,用fgetcsv函數取出其中的資料放到一個數組中(fgetcsv — 從檔案指標中讀入一行並解析 CSV 欄位) 


代碼如下:

?
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 <?php $file=fopen(‘./product.csv‘,‘rb‘);$data=array();//fgetcsv — 從檔案指標中讀入一行並解析 CSV 欄位while($line=fgetcsv($file)){//一直取到檔案結束,此事返回false  $data[]=$line; }print_r($data); /*Array(    [0] => Array        (            [0] => 商品名            [1] => 價格        )     [1] => Array        (            [0] => iphone4s            [1] => 4199        )     [2] => Array        (            [0] => note2            [1] => 3999        )     [3] => Array        (            [0] => 小米2            [1] => 1999        )     [4] => Array        (            [0] => iphone5            [1] => 4899        )     [5] => )*/ ?>

php擷取excel表格中資料的小方法 然後就可以放到資料庫了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.