php_ini_loaded_file

(PHP 5 >= 5.2.4, PHP 7)

php_ini_loaded_fileRetrieve a path to the loaded php.ini file

설명

string php_ini_loaded_file ( void )

Check if a php.ini file is loaded, and retrieve its path.

인수

이 함수는 인수가 없습니다.

반환값

The loaded php.ini path, or FALSE if one is not loaded.

예제

Example #1 php_ini_loaded_file() example

<?php
$inipath 
php_ini_loaded_file();

if (
$inipath) {
    echo 
'Loaded php.ini: ' $inipath;
} else {
    echo 
'A php.ini file is not loaded';
}
?>

위 예제의 출력 예시:

Loaded php.ini: /usr/local/php/php.ini

참고

add a note add a note

User Contributed Notes 4 notes

up
4
Andy Dodd
8 years ago
Or you could use
php -i | grep php.ini
up
2
geekcom
4 years ago
To find your php.ini just run

php --ini
up
1
yc
7 years ago
you can also do:

php -i | grep "Configuration File"
up
-1
litelus
9 years ago
quick way to find the ini loaded for the cli
php -r "echo php_ini_loaded_file();"
To Top