laravel PhpSpreadsheet 导入类库

本文介绍了如何在laravel项目中利用PhpSpreadsheet库读取Excel文件,通过`$excel->readExcel($path, 2)`来读取指定工作表的数据。" 106148346,9506434,BFS算法深度解析与最短路径证明,"['算法', '图论', '数据结构']
摘要由CSDN通过智能技术生成
<?php
namespace App\Libs;

use \PhpOffice\PhpSpreadsheet\IOFactory;
use PhpOffice\PhpSpreadsheet\Writer\Xlsx;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
require '../vendor/autoload.php';

ini_set('max_execution_time', 0);
ini_set ('memory_limit', "50000M");

/*  安装步骤  1.composer require phpoffice/phpspreadsheet  */
/*  安装,导入 导出 参照手册  https://www.helloweba.net/php/561.html */
class Excel extends Controller{

    /**  Excel 导入 数据
     * @param $path    string  导入路径
     * @param $readnum  string  从第几行开始读取
     * @return array  返回数据
     *  导入5万以上数据 尽量一条条添加, 导入小量数据 拼接添加
     */
    function readExcel($path,$readnum){
        $reader = IOFactory::createReader('Xlsx');
        $reader->setReadDataOnly(TRUE);
        $spreadsheet = IOFactory::load($path);// 载入excel表格
        $worksheet = $spreadsheet->getActiveSheet();
        $highestRow = $worksheet-&
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值