parse_ini_file() 함수는 구성 파일(ini)을 구문 분석합니다.
구문
parse_ini_file(file_path, process_sections)
매개변수
-
file_path - 구문 분석할 ini 파일입니다.
-
process_sections - TRUE로 설정하면 섹션 이름과 설정이 포함된 다차원 배열을 얻게 됩니다.
반환
parse_ini_file() 함수는 성공 시 설정을 연관 배열로 반환합니다. 실패 시 FALSE를 반환합니다.
"demo.ini"의 내용이 다음과 같다고 가정해 보겠습니다. -
[names] one = Anne two = Katie three = Tom [urls] host1 = "https://www.example1.com" host2 = "https://www.example2.com"
예시
<?php print_r(parse_ini_file("demo.ini")); ?>
출력
Array ( [one] => Anne [two] => Katie [three] => Tom [host1] => https://www.example1.com [host2] => https://www.example2.com )