mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
Fix tests
This commit is contained in:
parent
a7d485143c
commit
d1c19eb5a1
@ -27,7 +27,7 @@ var_dump($baz);
|
||||
var_dump($arr);
|
||||
session_destroy();
|
||||
--EXPECT--
|
||||
object(foo)(2) {
|
||||
object(foo)#1 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -35,7 +35,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
&object(foo)(2) {
|
||||
object(foo)#2 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
|
@ -75,7 +75,7 @@ session_destroy();
|
||||
--EXPECT--
|
||||
OPEN: PHPSESSID
|
||||
READ: abtest
|
||||
object(foo)(2) {
|
||||
object(foo)#2 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -83,7 +83,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
&object(foo)(2) {
|
||||
object(foo)#3 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -93,7 +93,7 @@ array(1) {
|
||||
WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}}
|
||||
OPEN: PHPSESSID
|
||||
READ: abtest
|
||||
object(foo)(2) {
|
||||
object(foo)#4 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -101,7 +101,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
object(foo)(2) {
|
||||
object(foo)#2 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
|
@ -87,7 +87,7 @@ session_destroy();
|
||||
--EXPECT--
|
||||
OPEN: PHPSESSID
|
||||
READ: abtest
|
||||
object(foo)(2) {
|
||||
object(foo)#2 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -95,7 +95,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
&object(foo)(2) {
|
||||
object(foo)#3 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -106,7 +106,7 @@ WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O
|
||||
CLOSE
|
||||
OPEN: PHPSESSID
|
||||
READ: abtest
|
||||
object(foo)(2) {
|
||||
object(foo)#4 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -114,7 +114,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
&object(foo)(2) {
|
||||
object(foo)#2 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -126,7 +126,7 @@ WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:3;}arr|a:1:{i:3;O
|
||||
CLOSE
|
||||
OPEN: PHPSESSID
|
||||
READ: abtest
|
||||
object(foo)(2) {
|
||||
object(foo)#3 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
@ -134,7 +134,7 @@ object(foo)(2) {
|
||||
}
|
||||
array(1) {
|
||||
[3]=>
|
||||
object(foo)(2) {
|
||||
object(foo)#4 (2) {
|
||||
["bar"]=>
|
||||
string(2) "ok"
|
||||
["yes"]=>
|
||||
|
@ -43,28 +43,28 @@ session_start();
|
||||
echo "values after session:\n";
|
||||
var_dump($a,$b);
|
||||
?>
|
||||
--EXPECT--
|
||||
--EXPECTF--
|
||||
original values:
|
||||
object(a)(1) {
|
||||
object(a)#%d (1) {
|
||||
["test"]=>
|
||||
string(5) "hallo"
|
||||
}
|
||||
object(b)(1) {
|
||||
object(b)#%d (1) {
|
||||
["a"]=>
|
||||
&object(a)(1) {
|
||||
&object(a)#%d (1) {
|
||||
["test"]=>
|
||||
string(5) "hallo"
|
||||
}
|
||||
}
|
||||
values after session:
|
||||
object(a)(1) {
|
||||
object(a)#%d (1) {
|
||||
["test"]=>
|
||||
string(5) "hallo"
|
||||
}
|
||||
object(b)(1) {
|
||||
object(b)#%d (1) {
|
||||
["a"]=>
|
||||
&object(a)(1) {
|
||||
&object(a)#%d (1) {
|
||||
["test"]=>
|
||||
string(5) "hallo"
|
||||
}
|
||||
}
|
||||
}
|
@ -48,24 +48,24 @@ session_destroy();
|
||||
--EXPECT--
|
||||
array(2) {
|
||||
["o1"]=>
|
||||
&object(tfoo)(1) {
|
||||
&object(tfoo)#1 (1) {
|
||||
["c"]=>
|
||||
int(42)
|
||||
}
|
||||
["o2"]=>
|
||||
&object(tfoo)(1) {
|
||||
&object(tfoo)#1 (1) {
|
||||
["c"]=>
|
||||
int(42)
|
||||
}
|
||||
}
|
||||
array(2) {
|
||||
["o1"]=>
|
||||
&object(tfoo)(1) {
|
||||
&object(tfoo)#1 (1) {
|
||||
["c"]=>
|
||||
int(44)
|
||||
}
|
||||
["o2"]=>
|
||||
&object(tfoo)(1) {
|
||||
&object(tfoo)#1 (1) {
|
||||
["c"]=>
|
||||
int(44)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user