'xmlParseEntityRef: no name' warnings while loading xml into a php file

后端 未结 9 1381
悲哀的现实
悲哀的现实 2020-12-02 12:39

I am reading an xml in php using simplexml_load_file. However while trying to load the xml it displays a list of warnings

Warning: simplexml_loa         


        
9条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-02 13:26

    This is in deed due to characters messing around with the data. Using htmlentities($yourText) worked for me (I had html code inside the xml document). See http://uk3.php.net/htmlentities.

提交回复
热议问题