���� 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/msgpack/tests/ |
--TEST-- Issue #94 (PHP7 segmentation fault with references) --SKIPIF-- <?php if (!extension_loaded("msgpack")) { echo "skip"; } --FILE-- <?php $bad = unserialize('a:4:{i:1;a:1:{s:10:"verylongid";s:1:"1";}i:10;a:1:{s:10:"verylongid";s:2:"10";}i:16;a:1:{s:10:"verylongid";s:2:"16";}i:0;a:1:{s:8:"children";a:3:{i:16;R:6;i:10;R:4;i:1;R:2;}}}'); $p = msgpack_pack($bad); print_r(msgpack_unpack($p)); --EXPECT-- Array ( [1] => Array ( [verylongid] => 1 ) [10] => Array ( [verylongid] => 10 ) [16] => Array ( [verylongid] => 16 ) [0] => Array ( [children] => Array ( [16] => Array ( [verylongid] => 16 ) [10] => Array ( [verylongid] => 10 ) [1] => Array ( [verylongid] => 1 ) ) ) )