Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须将数据导出到 xlsx,其中导出的文件应该是预定义的格式。因为这些我正在使用“PHPexcel”。我创建了某种格式的模板,每一行都有一些指定的高度。
实际上,在每个单元格中,我都会动态地写入数据。因此,如果文本较大,则行高不会增加。
无论如何,是否会增加行高以适合单元格文本。
要将行设置为自动调整:
$objPHPExcel->getActiveSheet()->getRowDimension(10)->setAutoSize(true);
然后设置单个单元格以允许换行
$objPHPExcel->getActiveSheet()->getStyle('A10:D10')->getAlignment()->setWrapText(true);