3v4l.org

run code in 300+ PHP versions simultaneously
<?php function pack_encode($format, $val) { $b64 = base64_encode(pack($format, $val)); return str_replace(array('/', '='), array('_', ''), $b64); // "/" json-encodes poorly and "=" is padding } function pack_decode($format, $val) { $b64 = str_replace('_', '/', $val); // un-padded $bytes = unpack($format, base64_decode($b64, false)); return print_r($bytes, false); //return "foo"; // return $hi << 8 | $lo; } function pack_encode_uint16($val) { return pack_encode('n', $val); } function pack_encode_uint32($val) { return pack_encode('N', $val); } function pack_decode_uint16($val) { return pack_decode('n', $val); } function pack_decode_uint32($val) { return pack_decode('N', $val); } $max = 32767; $n = 20; $step = intval($max/$n); for ($i=0; $i<=$n; $i++) { $val = $i*$step; $enc16 = pack_encode_uint16($val); $enc32 = pack_encode_uint32($val); $str = base64_encode(strval($val)); // STUPID echo "$enc16 $enc32 $str $val"; $dec16 = pack_decode_uint16($enc16); $dec32 = pack_decode_uint32($enc32); if ($dec16 != $val) { echo " $dec16 != $val"; } else if ($dec32 != $val) { echo " $dec32 != $val"; } echo "\n"; }
Output for 5.2.0, 5.2.2 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
AAA AAAAAA MA== 0Array ( [1] => 0 ) Array ( [1] => 0 ) 1 != 0 BmY AAAGZg MTYzOA== 1638Array ( [1] => 1638 ) Array ( [1] => 1638 ) DMw AAAMzA MzI3Ng== 3276Array ( [1] => 3276 ) Array ( [1] => 3276 ) EzI AAATMg NDkxNA== 4914Array ( [1] => 4914 ) Array ( [1] => 4914 ) GZg AAAZmA NjU1Mg== 6552Array ( [1] => 6552 ) Array ( [1] => 6552 ) H_4 AAAf_g ODE5MA== 8190Array ( [1] => 8190 ) Array ( [1] => 8190 ) JmQ AAAmZA OTgyOA== 9828Array ( [1] => 9828 ) Array ( [1] => 9828 ) LMo AAAsyg MTE0NjY= 11466Array ( [1] => 11466 ) Array ( [1] => 11466 ) MzA AAAzMA MTMxMDQ= 13104Array ( [1] => 13104 ) Array ( [1] => 13104 ) OZY AAA5lg MTQ3NDI= 14742Array ( [1] => 14742 ) Array ( [1] => 14742 ) P_w AAA__A MTYzODA= 16380Array ( [1] => 16380 ) Array ( [1] => 16380 ) RmI AABGYg MTgwMTg= 18018Array ( [1] => 18018 ) Array ( [1] => 18018 ) TMg AABMyA MTk2NTY= 19656Array ( [1] => 19656 ) Array ( [1] => 19656 ) Uy4 AABTLg MjEyOTQ= 21294Array ( [1] => 21294 ) Array ( [1] => 21294 ) WZQ AABZlA MjI5MzI= 22932Array ( [1] => 22932 ) Array ( [1] => 22932 ) X_o AABf+g MjQ1NzA= 24570Array ( [1] => 24570 ) Array ( [1] => 24570 ) ZmA AABmYA MjYyMDg= 26208Array ( [1] => 26208 ) Array ( [1] => 26208 ) bMY AABsxg Mjc4NDY= 27846Array ( [1] => 27846 ) Array ( [1] => 27846 ) cyw AABzLA Mjk0ODQ= 29484Array ( [1] => 29484 ) Array ( [1] => 29484 ) eZI AAB5kg MzExMjI= 31122Array ( [1] => 31122 ) Array ( [1] => 31122 ) f_g AAB_+A MzI3NjA= 32760Array ( [1] => 32760 ) Array ( [1] => 32760 )
Output for 5.2.1
AAA AAAAAA MA== 0Array ( [1] => 0 ) Array ( [1] => 0 ) 1 != 0 BmY AAAGZg MTYzOA== 1638Array ( [1] => 1638 ) Array ( [1] => 1638 ) DMw AAAMzA MzI3Ng== 3276Array ( [1] => 3276 ) Array ( [1] => -2147480372 ) EzI AAATMg NDkxNA== 4914Array ( [1] => 4914 ) Array ( [1] => 4914 ) GZg AAAZmA NjU1Mg== 6552Array ( [1] => 6552 ) Array ( [1] => -2147477096 ) H_4 AAAf_g ODE5MA== 8190Array ( [1] => 8190 ) Array ( [1] => -2147475458 ) JmQ AAAmZA OTgyOA== 9828Array ( [1] => 9828 ) Array ( [1] => 9828 ) LMo AAAsyg MTE0NjY= 11466Array ( [1] => 11466 ) Array ( [1] => -2147472182 ) MzA AAAzMA MTMxMDQ= 13104Array ( [1] => 13104 ) Array ( [1] => 13104 ) OZY AAA5lg MTQ3NDI= 14742Array ( [1] => 14742 ) Array ( [1] => -2147468906 ) P_w AAA__A MTYzODA= 16380Array ( [1] => 16380 ) Array ( [1] => -2147467268 ) RmI AABGYg MTgwMTg= 18018Array ( [1] => 18018 ) Array ( [1] => 18018 ) TMg AABMyA MTk2NTY= 19656Array ( [1] => 19656 ) Array ( [1] => -2147463992 ) Uy4 AABTLg MjEyOTQ= 21294Array ( [1] => 21294 ) Array ( [1] => 21294 ) WZQ AABZlA MjI5MzI= 22932Array ( [1] => 22932 ) Array ( [1] => -2147460716 ) X_o AABf+g MjQ1NzA= 24570Array ( [1] => 24570 ) Array ( [1] => -2147459078 ) ZmA AABmYA MjYyMDg= 26208Array ( [1] => 26208 ) Array ( [1] => 26208 ) bMY AABsxg Mjc4NDY= 27846Array ( [1] => 27846 ) Array ( [1] => -2147455802 ) cyw AABzLA Mjk0ODQ= 29484Array ( [1] => 29484 ) Array ( [1] => 29484 ) eZI AAB5kg MzExMjI= 31122Array ( [1] => 31122 ) Array ( [1] => -2147452526 ) f_g AAB_+A MzI3NjA= 32760Array ( [1] => 32760 ) Array ( [1] => -2147450888 )
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 1 != 0 BmY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 DMw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 EzI AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 GZg AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 H_4 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 JmQ AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 LMo AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 MzA AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 OZY AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 P_w AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 RmI AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 TMg AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 Uy4 AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 WZQ AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 X_o AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 ZmA AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 bMY AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 cyw AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 eZI AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 f_g AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10
Output for 4.3.0 - 4.3.1
AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 1 != 0 BmY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 DMw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 EzI AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 GZg AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 H_4 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 JmQ AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 LMo AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 MzA AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 OZY AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 P_w AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 RmI AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 TMg AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 Uy4 AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 WZQ AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 X_o AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 ZmA AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 bMY AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 cyw AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 eZI AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10 f_g AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/P48s6 on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/P48s6 on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/P48s6 on line 10

preferences:
325.35 ms | 421 KiB | 456 Q