天天看點

php 讀取excel 數字,php如何讀取excel中的資料

php 讀取excel 數字,php如何讀取excel中的資料

1、搭建php程式運作環境來執行程式,隻要能讓程式運作起來就行

2、下載下傳PHPExcel.php類檔案以及相關元件

php 讀取excel 數字,php如何讀取excel中的資料

3、包含到要運作的檔案中 require PHPExcel.php,建立對象預設用excel2007讀取excel,若格式不對,則用之前的版本進行讀取

php 讀取excel 數字,php如何讀取excel中的資料

4、讀取excel的工作表可以是多個,如果你隻需要讀取第一個那麼就用 $PHPExcel->getSheet(0) , 如果是多個就在循環中進行操作其他内容

php 讀取excel 數字,php如何讀取excel中的資料

5、分别擷取 excel表的行和列$allColumn = $currentSheet->getHighestColumn();

$allRow = $currentSheet->getHighestRow();

php 讀取excel 數字,php如何讀取excel中的資料

6、在行和列的雙循環中來讀取對應的資料for($currentRow = 2;$currentRow <= 98;$currentRow++){

echo"

";

//for($currentColumn= 'A';$currentColumn<= $allColumn; $currentColumn++){

$cancername="";

for($currentColumn= 'A';$currentColumn<='B'; $currentColumn++){

兩個for交叉定位可以讀取單元格的資料

php 讀取excel 數字,php如何讀取excel中的資料