如何将Excel文档读入对象的属性

时间:2019-07-25 13:04:38

标签: phpspreadsheet

我有一个Excel文档,其中包含各列(类别,模型,描述图像)。我想将每列下面的所有记录读入对象的属性,但不知道如何进行。

我的代码当前可以将整个excel文档显示到Html表中。

$fxls = $fileName;
        $spreadsheet = \PhpOffice\PhpSpreadsheet\IOFactory::load($fxls);


        //read excel data and store it into an array
        $xls_data = $spreadsheet->getActiveSheet()->toArray(null, true, true, true);



        $html_tb = '<table border="1"><tr><th>' . implode('</th><th>', $xls_data[1]) . '</th></tr>';
        $nr = count($xls_data); //number of rows
        for ($i = 2; $i <= $nr; $i++) {

            $html_tb .= '<tr><td>' . implode('</td><td>', $xls_data[$i]) . '</td></tr>';


        }
        $html_tb .= '</table>';

        echo $html_tb;

是否可以只读取一行具有属性(类别,模型,描述,图像)的对象?

0 个答案:

没有答案