1
0
mirror of https://github.com/php/php-src.git synced 2026-04-16 20:41:18 +02:00
Files
archived-php-src/ext/standard/tests/serialize/bug69210.phpt
2015-03-22 20:34:59 -07:00

51 lines
706 B
PHP

--TEST--
serialize() integrity with non string on __sleep
--FILE--
<?php
class testString
{
public $a = true;
public function __sleep()
{
return array('a', '1');
}
}
class testInteger
{
public $a = true;
public function __sleep()
{
return array('a', 1);
}
}
$cs = new testString();
$ci = new testInteger();
$ss = @serialize($cs);
echo $ss . "\n";
$si = @serialize($ci);
echo $si . "\n";
var_dump(unserialize($ss));
var_dump(unserialize($si));
?>
--EXPECT--
O:10:"testString":2:{s:1:"a";b:1;s:1:"1";N;}
O:11:"testInteger":2:{s:1:"a";b:1;s:1:"1";N;}
object(testString)#3 (2) {
["a"]=>
bool(true)
["1"]=>
NULL
}
object(testInteger)#3 (2) {
["a"]=>
bool(true)
["1"]=>
NULL
}