ID:               14604
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
 Status:           Analyzed
 Bug Type:         WDDX related
 Operating System: Windows NT 4 sp 6a
 PHP Version:      4.1.0
 New Comment:

Reproduced it with 4.0.6 and 4.1.2 compiled as cgi on FreeBSD
4.0-Release and Apache 1.3.12

wddx_serialize_vars produces the same empty packet. The only thing that
seems to work to create a packet is wddx_serialize_value


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

[2001-12-22 15:48:23] [EMAIL PROTECTED]

sander, can you also test for PHP 4.0.6 to verify if it broke during
the 4.1 release circle?


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

[2001-12-22 15:20:20] [EMAIL PROTECTED]

Reproduced on Windows 2000 with 4.1.0 on Apache 1.3.22 (module).

Outpu:
<wddxPacket
version='1.0'><header/><data><struct></struct></data></wddxPacket>

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

[2001-12-19 10:45:21] [EMAIL PROTECTED]

at least for me your code works in the same way under 4.0.6 and 4.1.0
on FreeBSD 4.4-STABLE (yes, I finally updated ;):

bash-2.05a$ ./php  test.php 
X-Powered-By: PHP/4.0.6
Content-type: text/html

<wddxPacket
version='1.0'><header/><data><struct></struct></data></wddxPacket>bash-2.05a$


bash-2.05a$ ./php  test.php 
X-Powered-By: PHP/4.1.0
Content-type: text/html

<wddxPacket
version='1.0'><header/><data><struct></struct></data></wddxPacket>bash-2.05a$



bash-2.05a$ cat test.php
<?php
$nazwisko = "Zgoda";
$imie = "Jarek";
$tmp = wddx_packet_start();
wddx_add_vars($tmp, $nazwisko, $imie);
$rs = wddx_packet_end($tmp);
echo $rs;
?>


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

[2001-12-19 09:48:07] [EMAIL PROTECTED]

$nazwisko = "Zgoda";
$imie = "Jarek";
$tmp = wddx_packet_start();
wddx_add_vars($tmp, $nazwisko, $imie);
$rs = wddx_packet_end($tmp);
echo $rs;

This code produces empty packet (just structure definition - no data)
in 4.1.0, while it worked in 4.0.6

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


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

Reply via email to