I'm trying to insert the ≥ sign in Excel with the Com Object from PHP
I've tried using chr(242)
, ó
but I get only characters from ISO-8859-1 charset
I now have no idea what to use to insert the character.
Here is my function :
$string = str_replace('>=', chr(242), $string);