How to center the text in PHPExcel merged cell

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

How to center text \"test\"?

This is my code:



        
5条回答
  •  梦毁少年i
    2020-12-23 13:58

    if you want to align only this cells, you can do something like this:

        $style = array(
            'alignment' => array(
                'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
            )
        );
    
        $sheet->getStyle("A1:B1")->applyFromArray($style);
    

    But, if you want to apply this style to all cells, try this:

        $style = array(
            'alignment' => array(
                'horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,
            )
        );
    
        $sheet->getDefaultStyle()->applyFromArray($style);
    

提交回复
热议问题