I need to put in the small "TM" in php array and then insert into excel file using phpexcel. However, the excel generated shows the cell as "FALSE" and not "ABC™ 1". May I know how can I put in the small "TM" in php array and pass it into excel file using phpexcel? Below are the current code.
$matchPattern = array
array("ABC™ 1","ABC","ABC"),
array("XYZ","XYZ","XYZ")
);
and then insert into excel with phpexcel
$objPHPExcel->getActiveSheet()->fromArray($matchPattern, null, 'A1');