unit/test/php/ini_precision/index.php
2018-07-11 19:35:46 +03:00

8 lines
182 B
PHP

<?php
if(isset($_GET['precision'])) {
ini_set('precision', $_GET['precision']);
}
header('X-File: ' . php_ini_loaded_file());
header('X-Precision: ' . ini_get('precision'));
?>