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-- Properly free duplicate undeclared properties when unserializing invalid data --SKIPIF-- <?php if (PHP_VERSION_ID >= 90000) { echo "skip requires php < 9.0 when testing that the deprecation has no impact on igbinary functionality\n"; } ?> --FILE-- <?php if (PHP_VERSION_ID >= 80200) { require_once __DIR__ . '/php82_suppress_dynamic_properties_warning.inc'; } class Test { public function __construct( ) { $this->pub = null; } public function __sleep() { // TODO: Could start detecting duplicates and emitting a notice as well return ["pub", "pub"]; } } $t = new Test(); $t->pub = new Test(); $s = igbinary_serialize($t); echo urlencode($s), "\n"; $unser = igbinary_unserialize($s); var_dump($unser); ?> --EXPECT-- %00%00%00%02%17%04Test%14%02%11%03pub%1A%00%14%02%0E%01%00%0E%01%00%0E%01%22%01 object(Test)#3 (1) { ["pub"]=> object(Test)#4 (1) { ["pub"]=> NULL } }