Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Test decbin function : 64bit long tests --SKIPIF-- <?php if (PHP_INT_SIZE != 8) d..
Decoded Output download
--TEST--
Test decbin function : 64bit long tests
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
?>
--FILE--
<?php
define("MAX_64Bit", 9223372036854775807);
define("MAX_32Bit", 2147483647);
define("MIN_64Bit", -9223372036854775807 - 1);
define("MIN_32Bit", -2147483647 - 1);
$longVals = array(
MAX_64Bit, MIN_64Bit, MAX_32Bit, MIN_32Bit, MAX_64Bit - MAX_32Bit, MIN_64Bit - MIN_32Bit,
MAX_32Bit + 1, MIN_32Bit - 1, MAX_32Bit * 2, (MAX_32Bit * 2) + 1, (MAX_32Bit * 2) - 1,
MAX_64Bit -1, MAX_64Bit + 1, MIN_64Bit + 1, MIN_64Bit - 1
);
foreach ($longVals as $longVal) {
echo "--- testing: $longVal ---
";
try {
var_dump(decbin($longVal));
} catch (TypeError $exception) {
echo $exception->getMessage() . "
";
}
}
?>
--EXPECT--
--- testing: 9223372036854775807 ---
string(63) "111111111111111111111111111111111111111111111111111111111111111"
--- testing: -9223372036854775808 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000000"
--- testing: 2147483647 ---
string(31) "1111111111111111111111111111111"
--- testing: -2147483648 ---
string(64) "1111111111111111111111111111111110000000000000000000000000000000"
--- testing: 9223372034707292160 ---
string(63) "111111111111111111111111111111110000000000000000000000000000000"
--- testing: -9223372034707292160 ---
string(64) "1000000000000000000000000000000010000000000000000000000000000000"
--- testing: 2147483648 ---
string(32) "10000000000000000000000000000000"
--- testing: -2147483649 ---
string(64) "1111111111111111111111111111111101111111111111111111111111111111"
--- testing: 4294967294 ---
string(32) "11111111111111111111111111111110"
--- testing: 4294967295 ---
string(32) "11111111111111111111111111111111"
--- testing: 4294967293 ---
string(32) "11111111111111111111111111111101"
--- testing: 9223372036854775806 ---
string(63) "111111111111111111111111111111111111111111111111111111111111110"
--- testing: 9.2233720368548E+18 ---
decbin(): Argument #1 ($num) must be of type int, float given
--- testing: -9223372036854775807 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000001"
--- testing: -9.2233720368548E+18 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000000"
Did this file decode correctly?
Original Code
--TEST--
Test decbin function : 64bit long tests
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
?>
--FILE--
<?php
define("MAX_64Bit", 9223372036854775807);
define("MAX_32Bit", 2147483647);
define("MIN_64Bit", -9223372036854775807 - 1);
define("MIN_32Bit", -2147483647 - 1);
$longVals = array(
MAX_64Bit, MIN_64Bit, MAX_32Bit, MIN_32Bit, MAX_64Bit - MAX_32Bit, MIN_64Bit - MIN_32Bit,
MAX_32Bit + 1, MIN_32Bit - 1, MAX_32Bit * 2, (MAX_32Bit * 2) + 1, (MAX_32Bit * 2) - 1,
MAX_64Bit -1, MAX_64Bit + 1, MIN_64Bit + 1, MIN_64Bit - 1
);
foreach ($longVals as $longVal) {
echo "--- testing: $longVal ---\n";
try {
var_dump(decbin($longVal));
} catch (TypeError $exception) {
echo $exception->getMessage() . "\n";
}
}
?>
--EXPECT--
--- testing: 9223372036854775807 ---
string(63) "111111111111111111111111111111111111111111111111111111111111111"
--- testing: -9223372036854775808 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000000"
--- testing: 2147483647 ---
string(31) "1111111111111111111111111111111"
--- testing: -2147483648 ---
string(64) "1111111111111111111111111111111110000000000000000000000000000000"
--- testing: 9223372034707292160 ---
string(63) "111111111111111111111111111111110000000000000000000000000000000"
--- testing: -9223372034707292160 ---
string(64) "1000000000000000000000000000000010000000000000000000000000000000"
--- testing: 2147483648 ---
string(32) "10000000000000000000000000000000"
--- testing: -2147483649 ---
string(64) "1111111111111111111111111111111101111111111111111111111111111111"
--- testing: 4294967294 ---
string(32) "11111111111111111111111111111110"
--- testing: 4294967295 ---
string(32) "11111111111111111111111111111111"
--- testing: 4294967293 ---
string(32) "11111111111111111111111111111101"
--- testing: 9223372036854775806 ---
string(63) "111111111111111111111111111111111111111111111111111111111111110"
--- testing: 9.2233720368548E+18 ---
decbin(): Argument #1 ($num) must be of type int, float given
--- testing: -9223372036854775807 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000001"
--- testing: -9.2233720368548E+18 ---
string(64) "1000000000000000000000000000000000000000000000000000000000000000"
Function Calls
None |
Stats
MD5 | 41ccc2b2f212603814829a9c3d8760b5 |
Eval Count | 0 |
Decode Time | 93 ms |