Generating XML document in PHP (escape characters)

前端 未结 10 979
难免孤独
难免孤独 2020-11-27 04:20

I\'m generating an XML document from a PHP script and I need to escape the XML special characters. I know the list of characters that should be escaped; but what is the corr

10条回答
  •  时光取名叫无心
    2020-11-27 04:56

    You can use this methods: http://php.net/manual/en/function.htmlentities.php

    In that way all entities (html/xml) are escaped and you can put your string inside XML tags

提交回复
热议问题