search
HomeBackend DevelopmentPHP ProblemHow to read xls file in php

How to read xls file in php

Oct 08, 2019 am 09:29 AM
php

There are two main options, the first is PHPExcelReader and the other is PHPExcel.

How to read xls file in php

PHPExcelReader is relatively lightweight and only supports reading Excel. It is actually a Reader. But unfortunately, it cannot support Excel 2007 format (.xlsx).

PHPExcel is relatively powerful and can output data in memory into Excel files. It can also perform various operations on Excel. The following mainly introduces how to use PHPExcel to read Excel 2007 format (.xlsx) files. . (Recommended learning: PHP video tutorial)

Download PHPExcel and save it to your own class file directory, and then use the following code to open the file in Excel 2007 (xlsx) format:

require_once '/libs/PHPExcel-1.8.0/Classes/PHPExcel.php';     //修改为自己的目录
echo &#39;<p>TEST PHPExcel 1.8.0: read xlsx file</p>&#39;;
$objReader = PHPExcel_IOFactory::createReaderForFile($filename); 
$objPHPExcel = $objReader->load($filename);
$objPHPExcel->setActiveSheetIndex(1);
$date = $objPHPExcel->getActiveSheet()->getCell(&#39;A16&#39;)->getValue();

You can see the contents of the file by outputting the $date variable. PHPExcel uses the PHPExcel_IOFactory class to automatically match the uploaded file type. Of course, we can also specify the file type to be parsed ourselves. Then load the PHP file into the objPHPExcel object through the load method.

If the Excel file has multiple Sheets, you can set the currently active Sheet through setActiveSheetIndex.

It should be noted that for the date format in Excel, whether PHPExcel reads a date type, we need to use the following method to convert the date type.

 echo date("Y-m-d H:i:s",PHPExcel_Shared_Date::ExcelToPHP($date));

The following code shows how to traverse and display the contents of Excel:

<table id="table_id">
<?php
     $objWorksheet = $objPHPExcel->getActiveSheet();
     $i = 0;
     foreach($objWorksheet->getRowIterator() as $row){
     ?>
          <tr>
          <?php
               $cellIterator = $row->getCellIterator();
               $cellIterator->setIterateOnlyExistingCells(false);
                    if( $i == 0 ){
                         echo &#39;<thead>&#39;;
                    }
               foreach($cellIterator as $cell){
                    echo &#39;<td>&#39; . $cell->getValue() . &#39;</td>&#39;;
               }
                    if( $i == 0 ){
                         echo &#39;</thead>&#39;;
                    }
               $i++;
          ?>
          </tr>
     <?php
     }
?>
</table>

The above is the detailed content of How to read xls file in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.