mirror of
https://github.com/php/php-src.git
synced 2024-11-29 21:04:10 +08:00
37 lines
563 B
PHP
37 lines
563 B
PHP
--TEST--
|
|
Session Object Deserialization
|
|
--FILE--
|
|
<?
|
|
|
|
class foo {
|
|
var $bar = "ok";
|
|
function method() { $this->yes++; }
|
|
}
|
|
|
|
session_id("test");
|
|
session_start();
|
|
session_decode('baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}}');
|
|
|
|
$baz->method();
|
|
$arr[3]->method();
|
|
|
|
var_dump($baz);
|
|
var_dump($arr);
|
|
session_destroy();
|
|
--EXPECT--
|
|
object(foo)(2) {
|
|
["bar"]=>
|
|
string(2) "ok"
|
|
["yes"]=>
|
|
int(2)
|
|
}
|
|
array(1) {
|
|
[3]=>
|
|
&object(foo)(2) {
|
|
["bar"]=>
|
|
string(2) "ok"
|
|
["yes"]=>
|
|
int(2)
|
|
}
|
|
}
|