���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/share/tests/pecl/igbinary/tests/ |
--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 // // NOTE: ArrayIterator::__debugInfo adds a fake private property that doesn't actually exist, which affects var_dump. // This isn't a bug in the unserializer. 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" } }