-- [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote (on Sunday, 20 July 2008, 01:36 AM +0800): > I just noticed this error using Zend_Feed::import() > > DOMDocument cannot parse XML: DOMDocument::loadXML() [domdocument.loadxml]: > Input is not proper UTF-8, indicate encoding ! Bytes: 0x93 0x74 0x68 0x65 in > Entity, line: 26 > > It shows that the Zend_Feed does not work with or equivalent characters in > the xml.
Actually, it's not Zend_Feed that doesn't work with it... it's PHP's own DOMDocument. Typically, these sorts of issues are due to mixing encodings -- make sure you are actually receiving UTF-8 when you pass data to Zend_Feed. > Is there any workaround with this? Did somebody experienced this > error? -- Matthew Weier O'Phinney Software Architect | [EMAIL PROTECTED] Zend Framework | http://framework.zend.com/
