forked from phadej/igbinary
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathigbinary_046d.phpt
More file actions
66 lines (66 loc) · 1.22 KB
/
Copy pathigbinary_046d.phpt
File metadata and controls
66 lines (66 loc) · 1.22 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
--TEST--
Correctly unserialize multiple object refs and non-refs.
--INI--
igbinary.compact_strings = On
--FILE--
<?php
$a = array(new stdClass());
$a[1] = $a[0];
$a[2] = &$a[1];
$a[3] = $a[0];
var_dump($a);
printf("%s\n", serialize($a));
$ig_ser = igbinary_serialize($a);
printf("%s\n", bin2hex($ig_ser));
$ig = igbinary_unserialize($ig_ser);
printf("%s\n", serialize($ig));
var_dump($ig);
$f = &$ig[2];
$f = 'V';
var_dump($ig);
// Note: While the php7 unserializer consistently makes a distinction between refs to an object and non-refs,
// the php5 serializer does not.
--EXPECTF--
array(4) {
[0]=>
object(stdClass)#%d (0) {
}
[1]=>
&object(stdClass)#%d (0) {
}
[2]=>
&object(stdClass)#%d (0) {
}
[3]=>
object(stdClass)#%d (0) {
}
}
a:4:{i:0;O:8:"stdClass":0:{}i:1;R:2;i:2;R:2;i:3;r:2;}
00000002140406001708737464436c61737314000601252201060225220106032201
a:4:{i:0;O:8:"stdClass":0:{}i:1;R:2;i:2;R:2;i:3;r:2;}
array(4) {
[0]=>
object(stdClass)#%d (0) {
}
[1]=>
&object(stdClass)#%d (0) {
}
[2]=>
&object(stdClass)#%d (0) {
}
[3]=>
object(stdClass)#%d (0) {
}
}
array(4) {
[0]=>
object(stdClass)#%d (0) {
}
[1]=>
&string(1) "V"
[2]=>
&string(1) "V"
[3]=>
object(stdClass)#%d (0) {
}
}