summaryrefslogtreecommitdiff
path: root/tests/func/007.phpt
blob: 73aae2e649283484bcb3b43651df948e571b707c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--TEST--
INI functions test
--FILE--
<?php

$ini1 =  ini_get('include_path'); 
ini_set('include_path','ini_set_works');
echo ini_get('include_path')."\n";
ini_restore('include_path');
$ini2 =  ini_get('include_path'); 

if ($ini1 !== $ini2) {
        echo "ini_restore() does not work.\n";
}
else {
        echo "ini_restore_works\n";
}

?>
--EXPECT--
ini_set_works
ini_restore_works