When I generate an excel file with large Strings, those won't auto-break and the row height won't be changed as well.
How do I enable auto-breaks and auto-heights in PHPExcel when using a fixed column width?
Trying this, just changed the height of the row, it didn't wrap the text:
for ($col = ord('c'); $col <= ord('f'); $col++)
{
$worksheet->getColumnDimension(chr($col))->setWidth(25);
$worksheet->getRowDimension(2)->setRowHeight(100);
$worksheet->getStyle(chr($col))->getAlignment()->setWrapText(true);
}