怎麼利用PHP讀取Excel檔案資訊及內容

2021-10-04 10:59:00 字數 1010 閱讀 7330

燚軒科技來詳細為大家分析解答一下吧。

比如說乙個普通的個人資訊表,我們利用phpexcel類庫將excel**內的資訊內容讀取出來,完整**如下:

<?php

$filename = "1.xls";

if (!file_exists($filename))

// 引入phpexcel

require_once "./phpexcel/iofactory.php";

// 載入當前檔案

$phpexcel = phpexcel_iofactory::load($filename);

// 設定為預設表

$phpexcel->setactivesheetindex(0);

// 獲取**數量

$sheetcount = $phpexcel->getsheetcount();

// 獲取行數

$row = $phpexcel->getactivesheet()->gethighestrow();

// 獲取列數

$column = $phpexcel->getactivesheet()->gethighestcolumn();

echo "**數目為:$sheetcount" . "**的行數:$row" . "列數:$column";

$data = ;

// 行數迴圈

for ($i = 1; $i <= $row; $i++)

echo "";

print_r($data);

}在上述**中,先if判斷excel**是否存在,再用require_once引入phpexcel類庫中iofactory.php這個類,然後使用phpexcel類庫的乙個方法載入excel檔案,這裡將載入的excel檔案賦值於$phpexcel變數。

然後再將$phpexcel變數通過分別指定相應的方法來獲取excel**的數目、行數、列數以及通過setactivesheetindex(0)方法設定這個**為預設(0表示預設)。

燚軒科技獲取解答。

python pandas讀取excel檔案

python pandas讀取excel檔案 data pd.read excel c users 86188 python dummy.xlsx 會報錯 syntaxerror unicode error unicodeescape codec can t decode bytes in posi...

利用POI讀取Excel檔案

前幾天實現了利用poi建立excel檔案,今天分享一下如何利用poi讀取excel檔案。要讀取的檔案內容,以下截圖已給出 下面講讀取檔案內容的方法。先建立乙個讀取excel的工具類。操作excel 的功能類 public class excelreader catch ioexception e 獲...

利用ExcelJS讀取Excel檔案

從excel需要讀取指定列的資料,放到乙個集合中 npm install exceljs const excel require exceljs const fs require fs const excelfile score.xlsx var workbook new excel.workboo...