How to center the text in PHPExcel merged cell

前端 未结 5 1084
花落未央
花落未央 2020-12-23 13:16

How to center text \"test\"?

This is my code:



        
5条回答
  •  生来不讨喜
    2020-12-23 13:59

    We can also set the vertical alignment with using this way

    $style_cell = array(
       'alignment' => array(
           'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
           'vertical' => PHPExcel_Style_Alignment::VERTICAL_CENTER,
       ) 
    ); 
    

    with this cell set the vertically aligned into the middle.

提交回复
热议问题