:::

7-6-4 讀取匯入的 Excel 資料

您沒有觀看影片的權限

您沒有觀看影片的權限

請先登入,登入後,確認您的權限後,即可觀看影片。

  1. 讀取 Excel 匯入檔方法($maxCell['row'] 是數字,$maxCell['column'] 是欄位名稱,是英文字母):
    require_once XOOPS_ROOT_PATH . '/modules/tadtools/vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php';
    $reader = PHPExcel_IOFactory::createReader('Excel2007');
    $PHPExcel = $reader->load($_FILES['上傳名稱']['tmp_name']); // 檔案名稱
    $sheet = $PHPExcel->getSheet(0); // 讀取第一個工作表(編號從 0 開始)
    $maxCell = $PHPExcel->getActiveSheet()->getHighestRowAndColumn();
    $maxColumn = getIndex($maxCell['column']);
    
    // 一次讀一列
    for ($row = 1; $row <= $maxCell['row']; $row++) {
        // 讀出每一格
        for ($column = 0; $column <= $maxColumn ; $column++) {
            $val = $sheet->getCellByColumnAndRow($column, $row)->getCalculatedValue();
        }
    }
    
    // 將文字轉為數字
    function getIndex($let)
    {
        $num = 0;
        $len = strlen($column);
        for ($i = 0; $i < $len; $i++) {
            $num *= 26;
            $num += ord($column[$i]) - ord('A') + 1;
        }
        return $num - 1;
    }

    getIndex() 有修正內容,避免無法抓超過Z欄位的索引

  2. class\Tad_signup_data.php 加入對應方法:
    // 預覽 Excel
    public static function preview_excel($action_id)
    {
        global $xoopsTpl;
        if (!$_SESSION['can_add']) {
            redirect_header($_SERVER['PHP_SELF'], 3, "您沒有權限使用此功能");
        }
    
        $action = Tad_signup_actions::get($action_id);
        $xoopsTpl->assign('action', $action);
    
        // 製作標題
        $head_row = explode("\n", $action['setup']);
        $head = $type = [];
        foreach ($head_row as $head_data) {
            $cols = explode(',', $head_data);
            if (strpos($cols[0], '#') === false) {
                $head[] = str_replace('*', '', trim($cols[0]));
                $type[] = trim($cols[1]);
            }
        }
    
        $xoopsTpl->assign('head', $head);
        $xoopsTpl->assign('type', $type);
    
        // 抓取內容
        $preview_data = [];
    
        require_once XOOPS_ROOT_PATH . '/modules/tadtools/vendor/phpoffice/phpexcel/Classes/PHPExcel/IOFactory.php';
        $reader = PHPExcel_IOFactory::createReader('Excel2007');
        $PHPExcel = $reader->load($_FILES['上傳名稱']['tmp_name']); // 檔案名稱
        $sheet = $PHPExcel->getSheet(0); // 讀取第一個工作表(編號從 0 開始)
        $maxCell = $PHPExcel->getActiveSheet()->getHighestRowAndColumn();
        $maxColumn = self::getIndex($maxCell['column']);
    
        // 一次讀一列
        for ($row = 1; $row <= $maxCell['row']; $row++) {
            // 讀出每一格
            for ($column = 0; $column <= $maxColumn; $column++) {
                $preview_data[$row][$column] = $sheet->getCellByColumnAndRow($column, $row)->getCalculatedValue();
            }
        }
    
        $xoopsTpl->assign('preview_data', $preview_data);
    
        //加入Token安全機制
        include_once $GLOBALS['xoops']->path('class/xoopsformloader.php');
        $token = new \XoopsFormHiddenToken();
        $token_form = $token->render();
        $xoopsTpl->assign("token_form", $token_form);
    }
    
    // 將文字轉為數字
    private static function getIndex($let)
    {
        // Iterate through each letter, starting at the back to increment the value
        for ($num = 0, $i = 0; $let != ''; $let = substr($let, 0, -1), $i++) {
            $num += (ord(substr($let, -1)) - 65) * pow(26, $i);
        }
    
        return $num;
    }

     

link to https://github.com/tadlearn/tad_signup/commit/a40cf7fae5b247d638198ab16360ca8d3eaae634 \


:::

搜尋

QR Code 區塊

https%3A%2F%2Fwww.tad0616.net%2Fmodules%2Ftad_book3%2Fpage.php%3Ftbsn%3D48%26tbdsn%3D1758

書籍目錄

展開 | 闔起

線上使用者

33人線上 (6人在瀏覽線上書籍)

會員: 0

訪客: 33

更多…