php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12707 xml_parse_into_struct ignores XML_OPTION_TARGET_ENCODING
Submitted: 2001-08-12 10:57 UTC Modified: 2001-08-12 14:37 UTC
From: php at nichtich dot de Assigned:
Status: Closed Package: XML related
PHP Version: 4.0.6 OS: Linux
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
45 - 18 = ?
Subscribe to this entry?

 
 [2001-08-12 10:57 UTC] php at nichtich dot de
xml_parse_into_struct does not seem to encode the name of tags in UTF-8 ignoring the XML_OPTION_TARGET_ENCODING you specified with xml_parser_set_option.

You reproduce the problem (using ISO-8859-1) with the
following script: 

<?
  $xmldata = "<?xml version='1.0' encoding='ISO-8859-1'?><???>???</???>";

  $parser = xml_parser_create('ISO-8859-1');

  // i want ISO-8859-1 !!
  xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING,"ISO-8859-1");

  xml_parse_into_struct($parser, $xmldata, $struct, $index);

  // need do decode tag names manually like this :-(
  //  foreach (array_keys($struct) as $index)
  //    $struct[$index]['tag']= utf8_decode(&$struct[$index]['tag']);

  // the name '???' is not encoded correctly
  echo "<h1>Struct</h1><pre>"; print_r($struct); echo "</pre>";
?>



Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-08-12 14:37 UTC] thies@php.net
fixed in CVS

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 19:01:28 2024 UTC