1--TEST-- 2Test serialize_precision (part 1) 3--INI-- 4serialize_precision=10 5--FILE-- 6<?php 7/* Prototype : proto string serialize(mixed variable) 8 * Description: Returns a string representation of variable (which can later be unserialized) 9 * Source code: ext/standard/var.c 10 * Alias to functions: 11 */ 12/* Prototype : proto mixed unserialize(string variable_representation) 13 * Description: Takes a string representation of variable and recreates it 14 * Source code: ext/standard/var.c 15 * Alias to functions: 16 */ 17 18var_dump(serialize(0.1)); 19?> 20--EXPECTF-- 21string(6) "d:0.1;" 22