Server IP : 192.158.238.246 / Your IP : 3.147.86.123 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-- Test unserialization of classes derived from ArrayIterator --SKIPIF-- <?php if (PHP_VERSION_ID < 70406) { echo "Skip requires php 7.4.6+"; } ?> --FILE-- <?php // based on bug45706.phpt from php-src class Foo1 extends ArrayIterator { } class Foo2 { } $x = array(new Foo1(),new Foo2); $s = igbinary_serialize($x); var_dump(igbinary_unserialize($s)); $s = str_replace("Foo", "Bar", $s); $y = igbinary_unserialize($s); var_dump($y); --EXPECTF-- array(2) { [0]=> object(Foo1)#3 (1) { ["storage":"ArrayIterator":private]=> array(0) { } } [1]=> object(Foo2)#4 (0) { } } array(2) { [0]=> object(__PHP_Incomplete_Class)#4 (5) { ["__PHP_Incomplete_Class_Name"]=> string(4) "Bar1" ["0"]=> int(0) ["1"]=> array(0) { } ["2"]=> array(0) { } ["3"]=> NULL } [1]=> object(__PHP_Incomplete_Class)#3 (1) { ["__PHP_Incomplete_Class_Name"]=> string(4) "Bar2" } }