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

后端 未结 9 1383
悲哀的现实
悲哀的现实 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:34

    The XML is most probably invalid.

    The problem could be the "&"

    $text=preg_replace('/&(?!#?[a-z0-9]+;)/', '&', $text);
    

    will get rid of the "&" and replace it with it's HTML code version...give it a try.

    0 讨论(0)
  • 2020-12-02 13:35

    Found this here ...

    Problem: An XML parser returns the error “xmlParseEntityRef: noname”

    Cause: There is a stray ‘&’ (ampersand character) somewhere in the XML text eg. some text & some more text

    Solution:

    • Solution 1: Remove the ampersand.
    • Solution 2: Encode the ampersand (that is replace the & character with & ). Remember to Decode when reading the XML text.
    • Solution 3: Use CDATA sections (text inside a CDATA section will be ignored by the parser.) eg. <![CDATA[some text & some more text]]>

    Note: ‘&’ ‘<' '>‘ will all give problems if not handled correctly.

    0 讨论(0)
  • 2020-12-02 13:39

    If you are getting this issue with opencart try editing

    catalog/controller/extension/feed/google_sitemap.php For More info and How to do it refer this: xmlparseentityref-no-name-error

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