PHP Classes

problem with accentuated sentences.

Recommend this page to a friend!

      Clean XML To Array  >  All threads  >  problem with accentuated sentences.  >  (Un) Subscribe thread alerts  
Subject:problem with accentuated sentences.
Summary:something is wrong in your code
Messages:4
Author:Tamas Hernadi
Date:2007-06-21 08:09:37
Update:2007-06-21 11:10:32
 

  1. problem with accentuated sentences.   Reply   Report abuse  
Picture of Tamas Hernadi Tamas Hernadi - 2007-06-21 08:09:37
look this:

xml file:

<?xml version="1.0" encoding="ISO-8859-1"?>
<katalógus_lista>
<katalógus gyártó="SALAMI S.p.A." tipus="katalógus" hely="feltoltott/salami_catalog_cable.pdf">Bowdenes távm&#369;ködtetés</katalógus>
</katalógus_lista>


php script:
<?php
include_once('lib.xml.php');

$xml = new Xml;

$out = $xml->parse('proba.xml', 'FILE','ISO-8859-1');

print_r($out['katalógus']);
?>


output:

Array ( [0] => Bowdenes t [1] => ávm&#369;ködtetés )


sum:
I think something is wrong in your code, please correct your class.



  2. Re: problem with accentuated sentences.   Reply   Report abuse  
Picture of Ivan Enderlin Ivan Enderlin - 2007-06-21 09:01:35 - In reply to message 1 from Tamas Hernadi
Hey, thanks to notify me this error, but it's not my fault hehe.

Your XML isn't well-formed.
Try this XML :

<?xml version="1.0" encoding="iso-8859-1"?>

<katalógus_lista>
<katalógus gyártó="SALAMI S.p.A." tipus="katalógus" hely="feltoltott/salami_catalog_cable.pdf">
<![CDATA[Bowdenes távm&#369;ködtetés]]>
</katalógus>
</katalógus_lista>

And keep your PHP code.


PHP XML parsing functions interpret &#int; like a special char that needs to be placed into a CDATA :)


  3. Re: problem with accentuated sentences.   Reply   Report abuse  
Picture of Tamas Hernadi Tamas Hernadi - 2007-06-21 09:48:40 - In reply to message 2 from Ivan Enderlin
apologise for my this. it is my fault, but you can see I started to study and try the xml language last day.

thanks your answer
and I will use your code

  4. Re: problem with accentuated sentences.   Reply   Report abuse  
Picture of Ivan Enderlin Ivan Enderlin - 2007-06-21 11:10:32 - In reply to message 3 from Tamas Hernadi
you're welcome :)