oveach

Results 1 comments of oveach

@PowerKiKi Here you are: ```php $data = array('foo' => '150000197301'); $phpExcel = new PHPExcel(); $sheet = $phpExcel->getSheet(0); $sheet->fromArray($data, null, 'A1'); $sheet->getStyle('A1:A1') ->getNumberFormat() ->setFormatCode(PHPExcel_Style_NumberFormat::FORMAT_TEXT); $writer = PHPExcel_IOFactory::createWriter($phpExcel, 'Excel2007'); $writer->save('test.xlsx'); ``` With...