���� 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 #67 (uint64_t) --SKIPIF-- <?php if (!extension_loaded("msgpack")) { die("skip"); } if (PHP_INT_SIZE !== 8) die("skip this test is for 64-bit platforms only"); ?> --FILE-- <?php var_dump(msgpack_unpack("\xcf"."\x7f\xff\xff\xff"."\xff\xff\xff\xff")); var_dump(msgpack_unpack("\xcf"."\x80\x00\x00\x00"."\x00\x00\x00\x00")); var_dump(msgpack_unpack("\xcf"."\xff\xff\xff\xff"."\xff\xff\xff\xff")); ?> OK --EXPECT-- int(9223372036854775807) string(19) "9223372036854775808" string(20) "18446744073709551615" OK