blob: a0c5db3271941821c935c7d6d59831c38d41d7d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<?php
if(isset($_GET['precision'])) {
ini_set('precision', $_GET['precision']);
}
header('X-File: ' . php_ini_loaded_file());
header('X-Precision: ' . ini_get('precision'));
?>
|