Server IP : 192.158.238.246 / Your IP : 18.223.172.41 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cpanel/ea-php80/root/usr/share/tests/pecl/igbinary/tests/ |
Upload File : |
--TEST-- __wakeup can modify properties without affecting other objects --FILE-- <?php class Obj { private static $count = 1; public $a; function __construct($a) { $this->a = $a; } public function __wakeup() { echo "call wakeup\n"; $this->a[] = "end"; } } function main() { $array = ["test"]; // array (not a reference, but should be copied on write) $a = new Obj($array); $b = new Obj($array); $variable = [$a, $b]; $serialized = igbinary_serialize($variable); printf("%s\n", bin2hex($serialized)); $unserialized = igbinary_unserialize($serialized); var_dump($unserialized); } main(); --EXPECTF-- 000000021402060017034f626a14011101611401060011047465737406011a0014010e010102 call wakeup call wakeup array(2) { [0]=> object(Obj)#%d (1) { ["a"]=> array(2) { [0]=> string(4) "test" [1]=> string(3) "end" } } [1]=> object(Obj)#%d (1) { ["a"]=> array(2) { [0]=> string(4) "test" [1]=> string(3) "end" } } }