真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)

這篇文章主要講解了“用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)”,文中的講解內(nèi)容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)”吧!

科爾沁右翼前網(wǎng)站建設公司創(chuàng)新互聯(lián)公司,科爾沁右翼前網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為科爾沁右翼前近千家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設要多少錢,請找那個售后服務好的科爾沁右翼前做網(wǎng)站的公司定做!

1、composer

composer require phpoffice/phpspreadsheet

2、文件傳入方法

public function talentImport(string $file_name='excelFile')
{
    $file = \Illuminate\Support\Facades\Request::file($file_name);if ($file) {if(!$file->isValid()) {return '文件有誤';
        }if (!in_array($file->getClientOriginalExtension(), ['xls', 'xlsx'])) {return '只允許上傳xls或xlsx格式的文件';
        }

        $excel_file_path = $file->getRealPath();if (!is_uploaded_file($excel_file_path)) {return '非法上傳';
        }

        $sheet = \PhpOffice\PhpSpreadsheet\IOFactory::load($excel_file_path)->getActiveSheet();


        $res = array();foreach ($sheet->getRowIterator(2) as $row) {

            $tmp = array();foreach ($row->getCellIterator() as $cell) {

                $tmp[] = $cell->getFormattedValue();

            }

            $res[$row->getRowIndex()] = $tmp;

        }if (empty($res)) {return '無法讀取文件內(nèi)容或文件內(nèi)容為空';
        }return $res;
    }return '請上傳excel文件';
}

3、對文件內(nèi)容的數(shù)組進行操作

foreach ($res as $row) {
    
    驗證數(shù)據(jù)正確性
    
    存入insert數(shù)組

}

    insert($array)

感謝各位的閱讀,以上就是“用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)”的內(nèi)容了,經(jīng)過本文的學習后,相信大家對用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關知識點的文章,歡迎關注!


標題名稱:用PhpSpreadsheet實現(xiàn)excel導入數(shù)據(jù)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/iijscp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部