How to set rowspan using PHPExcel library for pdf with table?
I want to generate a PDF file with a report as a table. I开发者_如何学C need to set rowspan. How can I do this?
If you mean that you need to merge cells in PHPExcel, then
$objPHPExcel->getActiveSheet()->mergeCells('A1:A3');
精彩评论