ID:               29194
 Comment by:       kemps at free dot fr
 Reported By:      tsigo at tsigo dot org
 Status:           Open
 Bug Type:         SimpleXML related
 Operating System: Gentoo
 PHP Version:      5.0.0
 New Comment:

It's seems that the output is utf-8 encoded.
I personnaly used a utf8decode($string_to_output).
Don't know if it is a bug or not ! (Francois)


Previous Comments:
------------------------------------------------------------------------

[2004-07-15 23:58:12] tsigo at tsigo dot org

Description:
------------
Example XML file:

<?xml version="1.0" encoding="us-ascii"?>
<Collection>
<DVD>
  ...
  <Title>Am&#233;lie</Title>
  ...
</DVD>
</Collection>

This is referring the movie "Amelie", and &#233 should turn into an
accented 'e' (é), but instead it gets processed as "Amélie".

Reproduce code:
---------------
$Collection = simplexml_load_file($filename);
echo htmlentities((string) $Collection->DVD->Title); // Produces
"Am&Atilde;&copy;lie"

Expected result:
----------------
Preserve the &#233; in the title.

Actual result:
--------------
Changes &#233; to é


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=29194&edit=1

Reply via email to