Server IP : 192.158.238.246 / Your IP : 18.223.172.41 Web Server : LiteSpeed System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64 User : jenniferflocom ( 1321) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/cpanel/ea-php80/root/usr/share/tests/pecl/igbinary/tests/ |
Upload File : |
--TEST-- igbinary with reference group of size 1 created by array_walk_recursive --FILE-- <?php // Source: https://github.com/igbinary/igbinary/issues/268 //Data must be an array of at least depth 2 $data = [['hello', 'world']]; //Each leaf value must have been accessed array_walk_recursive($data, function ($value) {}); //Then a second array must be constructed element-wise from the first $data2 = [$data[0]]; //Then both arrays need to be serialized together $a = [$data, $data2]; $ser1 = igbinary_serialize($a); $b = igbinary_unserialize($ser1); print serialize($a) . "\n"; print serialize($b) . "\n"; print bin2hex($ser1) . "\n"; print bin2hex(igbinary_serialize($b)) . "\n"; --EXPECT-- a:2:{i:0;a:1:{i:0;a:2:{i:0;s:5:"hello";i:1;s:5:"world";}}i:1;a:1:{i:0;a:2:{i:0;s:5:"hello";i:1;s:5:"world";}}} a:2:{i:0;a:1:{i:0;a:2:{i:0;s:5:"hello";i:1;s:5:"world";}}i:1;a:1:{i:0;a:2:{i:0;s:5:"hello";i:1;s:5:"world";}}} 00000002140206001401060014020600110568656c6c6f06011105776f726c640601140106000102 00000002140206001401060014020600110568656c6c6f06011105776f726c640601140106000102