mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
47 lines
803 B
PHP
47 lines
803 B
PHP
--TEST--
|
|
session object deserialization
|
|
--SKIPIF--
|
|
<?php include('skipif.inc'); ?>
|
|
--INI--
|
|
session.use_cookies=0
|
|
session.cache_limiter=
|
|
session.serialize_handler=php
|
|
session.save_handler=files
|
|
--FILE--
|
|
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
class foo {
|
|
public $bar = "ok";
|
|
function method() { $this->yes++; }
|
|
}
|
|
|
|
session_id("abtest");
|
|
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 = $_SESSION['baz'];
|
|
$arr = $_SESSION['arr'];
|
|
|
|
$baz->method();
|
|
$arr[3]->method();
|
|
|
|
var_dump($baz);
|
|
var_dump($arr);
|
|
session_destroy();
|
|
--EXPECT--
|
|
object(foo)#1 (2) {
|
|
["bar"]=>
|
|
string(2) "ok"
|
|
["yes"]=>
|
|
int(2)
|
|
}
|
|
array(1) {
|
|
[3]=>
|
|
object(foo)#2 (2) {
|
|
["bar"]=>
|
|
string(2) "ok"
|
|
["yes"]=>
|
|
int(2)
|
|
}
|
|
}
|