I am using simpleXml to parse my xml but it always breaks the page when i try to parse Spanish, french, Estonian, Portuguese, superscripts or subscripts.

Any Idea ??

Example of the XML :-

<carddata> <logo_id>0</logo_id> <cscale>Ă‘</cscale><carddata>

Scripts :-

$carddetail = new SimpleXMLElement($xml);
$carddetail = iconv('UTF-8', 'ISO-8859-15//TRANSLIT', $carddetail);

In the xml i sent

<cscale><![CDATA[Peter Nortoné]]></cscale> 

and the error is

Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 22: parser error : CData section not finished Peter Nort in D:\xampp\htdocs\logosnap\card.php on line 144

Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: <text><![CDATA[Peter Norton in D:\xampp\htdocs\logosnap\card.php on line 144
link|improve this question

78% accept rate
example, and code, please – ajreal Dec 9 '11 at 7:33
<carddata> <logo_id>0</logo_id> <cscale>Ñ</cscale><carddata> – Salman Ali Dec 9 '11 at 7:42
PHP Code: $carddetail = new SimpleXMLElement($xml); $carddetail = iconv('UTF-8', 'ISO-8859-15//TRANSLIT', $carddetail); – Salman Ali Dec 9 '11 at 7:43
turn out you have use the iconv wrongly, can you double check what is the charset for the XML string? If is already is UTF-8,why bother to convert to ISO? – ajreal Dec 10 '11 at 4:00
feedback

2 Answers

look into forcing the encoding to UTF-8

link|improve this answer
can you give me some code hint ?? – Salman Ali Dec 9 '11 at 7:30
here is a similar situation to yours. You didnt post any code so this is the best i can do: stackoverflow.com/questions/1426852/… – user1070017 Dec 9 '11 at 7:42
feedback
$carddetail = new SimpleXMLElement($xml);  
<-- this set $carddetail as simplexmlelement object

You can't use the object as string like :-

$carddetail = iconv('UTF-8', 'ISO-8859-15//TRANSLIT', $carddetail);

So, try this :-

$carddetail = new SimpleXMLElement(iconv('UTF-8','ISO-8859-15//TRANSLIT',$xml));
link|improve this answer
I have tried that, but same problem – Salman Ali Dec 9 '11 at 9:42
enclose the error, please – ajreal Dec 9 '11 at 9:48
In the xml i sent <cscale><![CDATA[Peter Nortoné]]></cscale> and the error is Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 22: parser error : CData section not finished Peter Nort in D:\xampp\htdocs\logosnap\card.php on line 144 Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: <text><![CDATA[Peter Norton in D:\xampp\htdocs\logosnap\card.php on line 144 – Salman Ali Dec 9 '11 at 9:59
please, update that into your question. – ajreal Dec 9 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.