91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

PHP如何處理Excel文件并獲取數據

PHP
小億
222
2024-05-06 13:47:51
欄目: 編程語言

在PHP中處理Excel文件可以使用PHPExcel或PhpSpreadsheet這兩個庫。以下是使用PhpSpreadsheet庫處理Excel文件并獲取數據的示例代碼:

<?php
require 'vendor/autoload.php'; //引入PhpSpreadsheet庫

use PhpOffice\PhpSpreadsheet\IOFactory;

// 導入Excel文件
$spreadsheet = IOFactory::load('example.xlsx');
$sheet = $spreadsheet->getActiveSheet();

// 獲取數據
$data = [];
foreach ($sheet->getRowIterator() as $row) {
    $rowData = [];
    $cellIterator = $row->getCellIterator();
    $cellIterator->setIterateOnlyExistingCells(FALSE); // 忽略空單元格
    foreach ($cellIterator as $cell) {
        $rowData[] = $cell->getValue();
    }
    $data[] = $rowData;
}

// 輸出數據
echo '<pre>';
print_r($data);
echo '</pre>';
?>

在上面的示例中,首先引入PhpSpreadsheet庫,然后使用IOFactory::load方法導入Excel文件。接著遍歷每一行并獲取每個單元格的數據,最后輸出數據。

需要注意的是,要先使用Composer安裝PhpSpreadsheet庫,然后在代碼中引入庫文件。

0
涞水县| 高雄县| 安远县| 毕节市| 通山县| 贞丰县| 福泉市| 寻乌县| 年辖:市辖区| 惠东县| 乐安县| 临猗县| 贵定县| 新营市| 奉化市| 息烽县| 宽城| 如皋市| 浦东新区| 郸城县| 会理县| 榆中县| 天祝| 商城县| 科技| 右玉县| 镇赉县| 寻乌县| 赣榆县| 华坪县| 封开县| 乌兰浩特市| 信丰县| 松桃| 靖西县| 五指山市| 富阳市| 伊宁市| 平原县| 新河县| 那坡县|