--TEST--
basic array_fill_keys test
+--INI--
+precision=14
--FILE--
<?php
var_dump(array_fill_keys('test', 1));
--TEST--
max() tests
+--INI--
+precision=14
--FILE--
<?php
--TEST--
min() tests
+--INI--
+precision=14
--FILE--
<?php
--TEST--
range()
+--INI--
+precision=14
--FILE--
<?php
var_dump(range(1, 100));
--TEST--
Bug #25694 (round() and number_format() inconsistency)
+--INI--
+precision=14
--FILE--
<?php
echo "round 0.045 = " . round(0.045, 2) . "\n";
--TEST--
sprintf %f #2
+--INI--
+precision=14
--FILE--
<?php
var_dump(sprintf("%.3F", 100.426));
--TEST--
str_pad() tests
+--INI--
+precision=14
--FILE--
<?php
/* Pad a string to a certain length with another string */