Server IP : 192.158.238.246 / Your IP : 18.116.36.48 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-- igbinary and large arrays --FILE-- <?php class BadSleep { public $prop = 'x'; public function __construct($value) { $this->prop = $value; } public function __sleep() { return null; } } var_dump(bin2hex($s = igbinary_serialize(new BadSleep('override')))); var_dump(igbinary_unserialize($s)); ?> --EXPECTF-- Notice: igbinary_serialize(): __sleep should return an array only containing the names of instance-variables to serialize in %s on line %d string(32) "000000021708426164536c6565701400" object(BadSleep)#1 (1) { ["prop"]=> string(1) "x" }