date_default_timezone_set('Europe/London'); //設置時間

/** Include path **/set_incl " /> 美女18一级毛片一品久道久久综合,国产一区二区三区自拍,久草这里只有精品视频

色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

PHP 如何利用phpexcel導入數據庫

廢話不多說,直接上代碼吧
復制代碼 代碼如下:
<?php
error_reporting(E_ALL); //開啟錯誤
set_time_limit(0); //腳本不超時

date_default_timezone_set('Europe/London'); //設置時間

/** Include path **/
set_include_path(get_include_path() . PATH_SEPARATOR . 'http://www.jb51.NET/../Classes/');//設置環境變量

/** phpExcel_IOFactory */
include 'phpExcel/IOFactory.php';

//$inputFileType = 'Excel5';    //這個是讀 xls的
    $inputFileType = 'Excel2007';//這個是計xlsx的
//$inputFileName = './sampleData/example2.xls';
$inputFileName = './sampleData/book.xlsx';

        echo 'Loading file ',pathinfo($inputFileName,PATHINFO_BASENAME),' using IOFactory with a defined reader type of ',$inputFileType,'<br />';
        $objReader = phpExcel_IOFactory::createReader($inputFileType);
        $objphpExcel = $objReader->load($inputFileName);
        /*
        $sheet = $objphpExcel->getSheet(0);
        $highestRow = $sheet->getHighestRow(); //取得總行數
        $highestColumn = $sheet->getHighestColumn(); //取得總列
        */   
        $objWorksheet = $objphpExcel->getActiveSheet();//取得總行數
        $highestRow = $objWorksheet->getHighestRow();//取得總列數

        echo 'highestRow='.$highestRow;
        echo "<br>";
        $highestColumn = $objWorksheet->getHighestColumn();
        $highestColumnIndex = phpExcel_Cell::columnIndexFromString($highestColumn);//總列數
        echo 'highestColumnIndex='.$highestColumnIndex;
        echo "<br />";
        $headtitle=array();
        for ($row = 1;$row <= $highestRow;$row++)
        {
            $strs=array();
            //注意highestColumnIndex的列數索引從0開始
            for ($col = 0;$col < $highestColumnIndex;$col++)
            { 
                $strs[$col] =$objWorksheet->getCellByColumnAndRow($col, $row)->getValue();
            } 
              $info = array(
                      'word1'=>"$strs[0]",
                    'word2'=>"$strs[1]",
                    'word3'=>"$strs[2]",
                    'word4'=>"$strs[3]",
              );
              //在這兒,你可以連接,你的數據庫,寫入數據庫了
              print_r($info);
              echo '<br />';
        }
?>

php技術PHP 如何利用phpexcel導入數據庫,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 钟山县| 汽车| 凤翔县| 哈尔滨市| 邯郸市| 马公市| 名山县| 广宁县| 莱阳市| 扎赉特旗| 长宁县| 介休市| 龙岩市| 天峨县| 崇左市| 龙里县| 原平市| 南京市| 罗平县| 泌阳县| 永丰县| 怀化市| 滁州市| 循化| 玉门市| 钦州市| 太和县| 班戈县| 乐都县| 涿州市| 伊川县| 阿拉尔市| 贵溪市| 金川县| 五寨县| 时尚| 台东县| 庆城县| 宜春市| 桐城市| 赣榆县|