我们如何在excel中创建一个表格,如下面的html?

时间:2016-04-12 09:36:05

标签: php laravel phpexcel laravel-excel

假设我想创建一个php-excellaravel-excel的表格,该表格应具有以下结构:

<table>
   <thead>
      <th>Column A</th>
      <th>Column B</th>
   </thead>
   <tbody>
      <tr>
        <td>value 1</td>
        <td>
          <table>
              <thead>
                 <th>neste column 1</th>
                 <th>nest column 2</th>
              </thead>
              <tbody>
                 <tr>
                    <td>nested value 1</td>
                    <td>nested value 2</td>
                 </tr>
              </tbody> 
          </table>
         </td>
       </tr>  
   </tbody>
</table>

我搜索了很多,似乎excel不支持嵌套表。 如果有可能,我们该怎么做?

0 个答案:

没有答案