假设我想创建一个php-excel
或laravel-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不支持嵌套表。 如果有可能,我们该怎么做?