���� 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-- APCu serializer registration --SKIPIF-- <?php if (!extension_loaded('apcu')) { echo "skip APCu not loaded"; } $ext = new ReflectionExtension('apcu'); if (version_compare($ext->getVersion(), '4.0.2', '<')) { echo "skip require APCu version 4.0.2 or above"; } --INI-- apc.enable_cli=1 apc.serializer=igbinary --FILE-- <?php echo ini_get('apc.serializer'), "\n"; class Bar { public $foo = 10; } $a = new Bar; apcu_store('foo', $a); unset($a); var_dump(apcu_fetch('foo')); --EXPECTF-- igbinary object(Bar)#%d (1) { ["foo"]=> int(10) }