how can I force PHP to add the BOM when using utf8_encode ?
Here's what I am trying to do:
$zip->addFromString($filename, utf8_encode($xml));
Unfortunately (for me), the result will not have the BOM mark at the beginning.
|
how can I force PHP to add the BOM when using utf8_encode ? Here's what I am trying to do:
Unfortunately (for me), the result will not have the BOM mark at the beginning. |
||||
|
|
|
Have you tried adding one yourself? The UTF-8 BOM seems to be
Watch out, though. Remember, PHP strings are simply dumb, unknowing bytes. They don't have a character set attached to them, so if the data in the string is already UTF-8, you don't need to run the conversion. Also, the linked Wikipedia article says this:
You probably don't need to bother with the BOM tapdance to begin with. |
|||