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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: php at nichtich dot de
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Tue Oct 08 01:01:28 2024 UTC