File: issue081.phpt

package info (click to toggle)
php-msgpack 1%3A2.2.0~rc2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,200 kB
  • sloc: ansic: 3,817; xml: 416; makefile: 2
file content (61 lines) | stat: -rw-r--r-- 1,140 bytes parent folder | download | duplicates (3)
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
--TEST--
Issue #81 (Ignore IS_UNDEF)
--SKIPIF--
<?php
if (!extension_loaded("msgpack")) {
    die("skip");
}
?>
--FILE--
<?php
class MyClass
{
  private $first_field;
  private $second_field;

  public function __construct()
  {
    $this->first_field = 'first_field';
    $this->second_field = 'second_field';
  }

  public function preSerialize()
  {
    unset($this->first_field);
  }
}

$t = new MyClass();
var_dump($t);
var_dump(msgpack_unpack(msgpack_pack($t)));

$t = new MyClass();
$t->preSerialize();
var_dump($t);
var_dump(msgpack_unpack(msgpack_pack($t)));
?>
OK
--EXPECTF--
object(MyClass)#%d (2) {
  ["first_field":"MyClass":private]=>
  string(11) "first_field"
  ["second_field":"MyClass":private]=>
  string(12) "second_field"
}
object(MyClass)#%d (2) {
  ["first_field":"MyClass":private]=>
  string(11) "first_field"
  ["second_field":"MyClass":private]=>
  string(12) "second_field"
}
object(MyClass)#%d (1) {
  ["second_field":"MyClass":private]=>
  string(12) "second_field"
}
object(MyClass)#%d (2) {
  ["first_field":"MyClass":private]=>
  NULL
  ["second_field":"MyClass":private]=>
  string(12) "second_field"
}
OK