diff options
author | Marcus Boerger <helly@php.net> | 2002-11-17 09:28:56 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-11-17 09:28:56 +0000 |
commit | b59c0d127418c84376e343949a579267a6971e66 (patch) | |
tree | 56eb8b3afea6ab7f0b966c1ac21f901f44fe5a33 /ext/standard | |
parent | 3d4fe01bb658d9acc01ff8d8a64d6406cf49e837 (diff) | |
download | php-git-b59c0d127418c84376e343949a579267a6971e66.tar.gz |
MFH: Conversion fix by Michael Mauch
Diffstat (limited to 'ext/standard')
-rw-r--r-- | ext/standard/tests/math/hexdec.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/tests/math/hexdec.phpt b/ext/standard/tests/math/hexdec.phpt index 40de8d1768..d8ff71f1ce 100644 --- a/ext/standard/tests/math/hexdec.phpt +++ b/ext/standard/tests/math/hexdec.phpt @@ -8,8 +8,8 @@ var_dump(hexdec("12345")); var_dump(hexdec("q12345")); var_dump(hexdec("12345+?!")); var_dump(hexdec("12345q")); -var_dump(hexdec("1234500001")); -var_dump(hexdec("17fffffff")); +var_dump((float)hexdec("1234500001")); +var_dump((float)hexdec("17fffffff")); ?> --EXPECT-- |