summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/bindec_basiclong_64bit.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/bindec_basiclong_64bit.phpt')
-rw-r--r--ext/standard/tests/math/bindec_basiclong_64bit.phpt16
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/standard/tests/math/bindec_basiclong_64bit.phpt b/ext/standard/tests/math/bindec_basiclong_64bit.phpt
index 3cc57d5dc4..488ab538ed 100644
--- a/ext/standard/tests/math/bindec_basiclong_64bit.phpt
+++ b/ext/standard/tests/math/bindec_basiclong_64bit.phpt
@@ -6,20 +6,20 @@ 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);
$binLongStrs = array(
- '0'.str_repeat('1',63),
- str_repeat('1',64),
- '0'.str_repeat('1',31),
- str_repeat('1',32),
+ '0'.str_repeat('1',63),
+ str_repeat('1',64),
+ '0'.str_repeat('1',31),
+ str_repeat('1',32),
'0'.str_repeat('1',64),
- str_repeat('1',65),
- '0'.str_repeat('1',32),
+ str_repeat('1',65),
+ '0'.str_repeat('1',32),
str_repeat('1',33)
);
@@ -28,7 +28,7 @@ foreach ($binLongStrs as $strVal) {
echo "--- testing: $strVal ---\n";
var_dump(bindec($strVal));
}
-
+
?>
===DONE===
--EXPECT--