summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/hexdec_basiclong_64bit.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/tests/math/hexdec_basiclong_64bit.phpt')
-rw-r--r--ext/standard/tests/math/hexdec_basiclong_64bit.phpt14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/standard/tests/math/hexdec_basiclong_64bit.phpt b/ext/standard/tests/math/hexdec_basiclong_64bit.phpt
index 29c684a155..225e42018b 100644
--- a/ext/standard/tests/math/hexdec_basiclong_64bit.phpt
+++ b/ext/standard/tests/math/hexdec_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);
$hexLongStrs = array(
- '7'.str_repeat('f',15),
- str_repeat('f',16),
- '7'.str_repeat('f',7),
- str_repeat('f',8),
+ '7'.str_repeat('f',15),
+ str_repeat('f',16),
+ '7'.str_repeat('f',7),
+ str_repeat('f',8),
'7'.str_repeat('f',16),
str_repeat('f',18),
- '7'.str_repeat('f',8),
+ '7'.str_repeat('f',8),
str_repeat('f',9)
);
@@ -28,7 +28,7 @@ foreach ($hexLongStrs as $strVal) {
echo "--- testing: $strVal ---\n";
var_dump(hexdec($strVal));
}
-
+
?>
===DONE===
--EXPECT--