如何使用 PHP Spout 库设置 Excel sheet 标题
How to set Excel sheet title with PHP Spout library
我正在使用 PHP Spout 库导出 Excel 超过 1 sheet 的工作簿。
如何为每个 sheet 设置标题?默认情况下它给出 sheet1 sheet2 等
我需要提供从 sheet2 个单元格到 sheet1 个单元格的超链接。如何使用 Spout 设置超链接?
要设置标题,您可以这样做:
$sheet = $writer->getCurrentSheet();
$sheet->setName('My custom name');
对于超链接,无法引用另一个 sheet 不幸的是
我正在使用 PHP Spout 库导出 Excel 超过 1 sheet 的工作簿。
如何为每个 sheet 设置标题?默认情况下它给出 sheet1 sheet2 等
我需要提供从 sheet2 个单元格到 sheet1 个单元格的超链接。如何使用 Spout 设置超链接?
要设置标题,您可以这样做:
$sheet = $writer->getCurrentSheet();
$sheet->setName('My custom name');
对于超链接,无法引用另一个 sheet 不幸的是