vote up 1 vote down star

I have a PHP variable that contains a string which represents an XML structure. This string contains ilegal characters that dont let me build a new SimpleXMLElement object from the string. I dont have a way to ask the source of the content to modify their response, so I need to execute some cleaning on this string before I create a SimpleXMLElement object.

I believe the character causing the problem is a � (0x00 (00) HEX) character, and its located within one of the Text Nodes of this string XML.

What is the best way to remove this character or other characters that could break the SimpleXMLElement object.

flag

50% accept rate

1 Answer

vote up 3 vote down check
$text = str_replace("\0", "", $text);

will replace all null characters in the $text string. You can also supply arrays for the first two arguments, if you want to do multiple replacements.

link|flag
depending on the encoding (utf-8), this could remove valid characters – ax Mar 13 at 12:40
@Johannes Rössel: I added $text= to make code and text match. str_replace does not modify the third argument – phihag Mar 13 at 12:44
the code only seems to work when i do this: $text = str_replace("�", "", $text); – Benjamin Ortuzar Mar 13 at 12:54
ax: UTF-8 encodes every character < 128 as the character itself, so if you want to get rid of \0, you should delete \0. No side-effects there. UTF-16 is a different matter entirely, though, but still I'd expect languages to work on strings as strings and not byte arrays, so it's a moot point – Johannes Rössel Mar 13 at 16:00
Benjamin: If that works, then your problem are probably not null characters but rather un-encoded ampersands. But I'd expect something that builds an XML node from a string to escape characters properly – Johannes Rössel Mar 13 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.