���� 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 : /proc/self/root/usr/share/tests/pecl/igbinary/tests/ |
--TEST-- igbinary and not enough data for array --FILE-- <?php set_error_handler(function ($errno, $errstr) { echo "$errstr\n"; }); class X {} var_dump(bin2hex($s = igbinary_serialize(new X()))); echo "One byte\n"; var_dump(igbinary_unserialize("\x00\x00\x00\x02\x17\x01\x58\x14")); echo "Two byte\n"; var_dump(igbinary_unserialize("\x00\x00\x00\x02\x17\x01\x58\x15")); igbinary_unserialize("\x00\x00\x00\x02\x17\x01\x58\x15\xff"); echo "Four byte\n"; var_dump(igbinary_unserialize("\x00\x00\x00\x02\x17\x01\x58\x16")); igbinary_unserialize("\x00\x00\x00\x02\x17\x01\x58\x16\x00\x00\x01"); ?> --EXPECTF-- string(18) "000000021701581400" One byte igbinary_unserialize_object_properties: end-of-data NULL Two byte igbinary_unserialize_object_properties: end-of-data NULL igbinary_unserialize_object_properties: end-of-data Four byte igbinary_unserialize_object_properties: end-of-data NULL igbinary_unserialize_object_properties: end-of-data