Lines Matching refs:ini
11 ; start of ini file
171 ; Expected:error, reserved key words must not be used as keys for ini file
192 ; end of ini file
194 /* creating parse.ini file */
195 $file_handle = fopen($file_path."/parse.ini", "w");
199 echo "*** Test parse_ini_file() function: with various keys and values given in parse.ini file ***…
200 echo "-- ini file without process_sections optional arg --\n";
202 $ini_array = parse_ini_file($file_path."/parse.ini");
205 echo "\n-- ini file with process_sections as TRUE --\n";
206 $ini_array = parse_ini_file($file_path."/parse.ini", TRUE);
213 unlink(__DIR__."/parse.ini");
216 *** Test parse_ini_file() function: with various keys and values given in parse.ini file ***
217 -- ini file without process_sections optional arg --
326 -- ini file with process_sections as TRUE --