How to set auto height in phpexcel?

前端 未结 4 1407
旧巷少年郎
旧巷少年郎 2021-02-01 01:42

I am using phpexcel to generate excel document with PHP.

the question is, how to make auto height row using phpexcel? many thanks :)

4条回答
  •  醉酒成梦
    2021-02-01 02:06

    To change height of all rows to auto you can do:

    foreach($xls->getActiveSheet()->getRowDimensions() as $rd) { 
        $rd->setRowHeight(-1); 
    }
    

提交回复
热议问题