ID:               28640
 Updated by:       [EMAIL PROTECTED]
 Reported By:      clemens at gutweiler dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         WDDX related
 Operating System: Linux 2.6.3
 PHP Version:      5.0.0RC2
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

You have to convert your data to UTF8 if it contains non-ASCII
characters. The documentation was wrong about setlocale() and this is
alrady fixed.  


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

[2004-06-18 14:36:08] clemens at gutweiler dot net

<?php
        var_dump( wddx_deserialize( '<?xml version="1.0" encoding="ISO-8859-1"
?>'."\n".wddx_serialize_value( 'teäst' ) ) );
?>

this works.
it works also if the data are encoded with utf-8.

but is a bc break!

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

[2004-06-05 10:50:18] clemens at gutweiler dot net

Description:
------------
wddx_deserialize stops deserializing at german umlaut character.

PHP Version: 5.0.0RC3RC2
This code works properly on PHP 4

Reproduce code:
---------------
<?php
        
        $wddx_data = 'test';
        var_dump( wddx_deserialize( wddx_serialize_value( $wddx_data ) ) );
        
        $wddx_data = 'teäst';
        var_dump( wddx_serialize_value( $wddx_data ) );
        var_dump( wddx_deserialize( wddx_serialize_value( $wddx_data ) ) );
        
        $wddx_data = array( 'string' => 'teäst' );
        var_dump( wddx_deserialize( wddx_serialize_value( $wddx_data ) ) );
        
?>

Expected result:
----------------
string(4) "test"
string(83) "<wddxPacket
version='1.0'><header/><data><string>teäst</string></data></wddxPacket>"
string(5) "teäst"
array(1) {
  ["string"]=>
  string(5) "teäst"
}


Actual result:
--------------
string(4) "test"
string(83) "<wddxPacket
version='1.0'><header/><data><string>teäst</string></data></wddxPacket>"
string(2) "te"
NULL



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


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

Reply via email to