日本综合一区二区|亚洲中文天堂综合|日韩欧美自拍一区|男女精品天堂一区|欧美自拍第6页亚洲成人精品一区|亚洲黄色天堂一区二区成人|超碰91偷拍第一页|日韩av夜夜嗨中文字幕|久久蜜综合视频官网|精美人妻一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
用PhpSpreadsheet實現(xiàn)excel導(dǎo)入數(shù)據(jù)

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

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

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

}

    insert($array)

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


文章題目:用PhpSpreadsheet實現(xiàn)excel導(dǎo)入數(shù)據(jù)
文章源于:http://www.dlmjj.cn/article/iijscp.html