summaryrefslogtreecommitdiff
path: root/ext/standard/tests/serialize/bug24063.phpt
blob: 3d172993ebe72dc21a714dee7782117ede177761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #24063 (serialize() missing 0 after the . on scientific notation)
--INI--
serialize_precision=100
precision=12
--FILE--
<?php 
$f = 1.0e-6;
$s = serialize($f);
var_dump($s, unserialize($s));
?>
--EXPECT--
string(9) "d:1.0E-6;"
float(1.0E-6)