From: Marcus Boerger Date: Wed, 21 Aug 2002 01:27:56 +0000 (+0000) Subject: Add var_dump float format test X-Git-Tag: RELEASE_0_91~356 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be1e23cbc93fcfb38146fa7c36c753089f112b0e;p=php Add var_dump float format test --- diff --git a/ext/standard/tests/general_functions/008.phpt b/ext/standard/tests/general_functions/008.phpt new file mode 100644 index 0000000000..a7e5307dc7 --- /dev/null +++ b/ext/standard/tests/general_functions/008.phpt @@ -0,0 +1,40 @@ +--TEST-- +var_dump float test +--INI-- +precision=12 +--FILE-- + +--EXPECT-- +array(14) { + [0]=> + string(2) "12" + [1]=> + float(0.012) + [2]=> + float(-0.012) + [3]=> + float(0.12) + [4]=> + float(-0.12) + [5]=> + float(1.2) + [6]=> + float(-1.2) + [7]=> + float(12) + [8]=> + float(-12) + [9]=> + float(0.000123) + [10]=> + float(1.23E-5) + [11]=> + float(123456789012) + [12]=> + float(1234567890120) + [13]=> + float(1.23456789012E+19) +} \ No newline at end of file