Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm reading a xml in php but i've got an error on the parse:

Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 5: parser error : error parsing attribute name

my xml string is:

$xmlString = '<?xml version="1.0" encoding="UTF-8"?>
<messages>
<message>
  <date>1352210570</date>
  <from>Rui <rui@mail.pt></from>
  <subject>Mensagem de Teste</subject>
  <url>test.com</url>
</message>
</messages>';

i parse the xml with simplexml_load_string($xmlString);

how can i escape the < and > on the from node??

share|improve this question
Duplicate of stackoverflow.com/questions/1091945/…. – Mike Nov 20 '12 at 14:46

1 Answer

$xmlString = '<?xml version="1.0" encoding="UTF-8"?>
<messages>
<message>
  <date>1352210570</date>
  <from><![CDATA[Rui <rui@mail.pt>]]></from>
  <subject>Mensagem de Teste</subject>
  <url>test.com</url>
</message>
</messages>';

The addition to your code was the inclusion of <![CDATA[ after your <from> tag and a ]]> before your </from> tag.

Note that within the CDATA tag, there is no quotes to denote a string. This tripped me up initially, so I'm trying to make sure it doesn't happen to others.

While &lt; and &gt; are probably a bit speedier in terms of performance, if you're writing potentially dynamic XML strings, The <![CDATA[someText]]> is much more of a "blanket escape"

share|improve this answer
Jon but i received the xml with the < and >. how can i replace the < and > only from the from node?? – xmatzx Nov 20 '12 at 14:47
How are you generating this string (Language, pseudocode) (Which is input for simplexml_load_string(), I'm assuming) – Jon Nov 20 '12 at 14:50
@xmatzx — You don't have XML. Reject it and tell whomever sent it to you to send XML instead. – Quentin Nov 20 '12 at 15:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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