summaryrefslogtreecommitdiff
path: root/ext/session/tests/001.phpt
blob: aac17cb3d5a9330ec18188c11115c99bec4d1827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
--TEST--
Session Object Serialization
--FILE--
<?

class foo {
	var $bar = "ok";

	function method() { $this->yes = "done"; }
}

$baz = new foo;
$baz->method();

$arr[3] = new foo;
$arr[3]->method();

session_register("baz");
session_register("arr");

print session_encode()."\n";

session_destroy();
--GET--
--POST--
--EXPECT--
baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";s:4:"done";}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";s:4:"done";}}