Tests: more php.ini options tests.

This commit is contained in:
Andrey Zelenkov
2018-07-11 19:35:46 +03:00
parent 223ba37ab5
commit 96a4f9f032
2 changed files with 78 additions and 0 deletions

View File

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