Browse Source

Test for bug #27287

PEAR_1_4DEV
foobar 23 years ago
parent
commit
abb9ac9d5f
  1. 18
      ext/wddx/tests/bug27287.phpt

18
ext/wddx/tests/bug27287.phpt

@ -0,0 +1,18 @@
--TEST--
Bug #27287 (segfault with deserializing object data)
--FILE--
<?php
class foo {
}
$foo = new foo();
$foo->abc = 'def';
$string = wddx_serialize_value($foo);
$bar = wddx_deserialize($string);
echo "OK\n";
?>
--EXPECT--
OK
Loading…
Cancel
Save