php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #11164 output conversion failed due to conv error
Submitted: 2001-05-29 04:07 UTC Modified: 2001-11-29 06:02 UTC
From: negativ at linuxnews dot pl Assigned:
Status: Not a bug Package: DOM XML related
PHP Version: 4.0.5 OS: Linux
Private report: No CVE-ID: None
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:
38 - 8 = ?
Subscribe to this entry?

 
 [2001-05-29 04:07 UTC] negativ at linuxnews dot pl
        $doc = xmldoc('<?xml version="1.0" encoding="iso-8859-2"?><p/>');
        $r = $doc->root();
        $r->new_child("test","z??w");
        echo $doc->dumpmem();

modules: domxml, iconv
 php: 4.0.5 (cgi)

 output:

output conversion failed due to conv error
Bytes: 0xF3 0xB3 0x77 0x3C
xmlOutputBufferWrite: encoder error
X-Powered-By: PHP/4.0.5
Content-type: text/plain

<?xml version="1.0" encoding="iso-8859-2"?>
<p><test>zOK

 

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-11-29 06:02 UTC] mfischer@php.net
To me this looks rather a proble with the characters or your systems locale or your libxml2 but not with PHP.

libxml2 uses its own calls to iconv() and there is little PHP can do about this.

Bogus (not a PHP bug).
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Jul 02 10:01:38 2025 UTC