Using the generated xlsx file from the tutorial Create Xlsx Files as a sample file, learn how to read xlsx files using PhpSpreadsheet in this tutorial.
Requirements:
- Composer
- PHP 7.2 or newer
Step 1.
Setup dependencies.
{
"require": {
"phpoffice/phpspreadsheet": "^1.3"
}
}
composer.json
Step 2.
Install phpspreadsheet.
$ composer install
command line
Step 3.
Create a new PHP file, and start coding.
<?php
// Autoload dependencies
require 'vendor/autoload.php';
// Import the Xlsx reader class
use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
// Full path of the file to read
$inputFileName = 'create-xlsx-files.xlsx';
// Create the reader object
$reader = new Xlsx();
// Load the file to read
$spreadsheet = $reader->load($inputFileName);
// Get the active sheet
$sheet = $spreadsheet->getActiveSheet();
/**
* Get the value of column A, row 1 using the
* combination of the column letter and row number.
*/
echo $sheet->getCell('A1')->getValue();
echo PHP_EOL;
/**
* Get the value of column A, row 1 using the
* combination of the column number and row number.
*/
echo $sheet->getCellByColumnAndRow('1', '1')->getValue();
read-xlsx-files.php
Test.
Command line testing.
$ php read-xlsx-files.php
command line
Leave a Reply