What is HTML Entity ' '?

后端 未结 2 729
孤独总比滥情好
孤独总比滥情好 2020-12-09 15:08

I\'m generating an XML Document object via the DOMDocument class. In the process, some kind of whitespace within elements is being converted into . It\

相关标签:
2条回答
  • 2020-12-09 15:31

    ASCII code 13 corresponds to a carriage return (in PHP, it's "\r").

    0 讨论(0)
  • 2020-12-09 15:37

    You scrub this character out of your output by not putting it there in the first place. Look for the code that puts the carriage return in your XML, and delete it.

    0 讨论(0)
提交回复
热议问题