--TEST-- Object Serializable interface --SKIPIF-- = 0) { echo "skip tests in PHP 5.1-8.1"; } --FILE-- a = $a; $this->b = $b; } public function serialize() { return pack('NN', $this->a, $this->b); } public function unserialize($serialized) { $tmp = unpack('N*', $serialized); $this->__construct($tmp[1], $tmp[2]); } } $o = new Obj(1, 2); test('object', $o, false); ?> --EXPECTF-- object 82c003a34f626aa80000000100000002 object(Obj)#%d (2) { ["a"]=> int(1) ["b"]=> int(2) } OK