(PECL xlswriter >= 1.2.1)
Vtiful\Kernel\Excel::mergeCells — Vtiful\Kernel\Excel mergeCells
scope
String com coordenadas de célula inicial e célula final.
data
String de dados.
Instância de Vtiful\Kernel\Excel.
Exemplo #1 Exemplo
<?php
$config = [
'path' => './tests'
];
$excel = new \Vtiful\Kernel\Excel($config);
$excel->fileName("test.xlsx")
->mergeCells('A1:C1', 'Células mescladas')
->output();