PHP 8.3.4 Released!

php_ini_loaded_file

(PHP 5 >= 5.2.4, PHP 7, PHP 8)

php_ini_loaded_fileRetrieve a path to the loaded php.ini file

Beschreibung

php_ini_loaded_file(): string|false

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

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

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

Beispiele

Beispiel #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';
}
?>

Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:

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

Siehe auch

add a note

User Contributed Notes 4 notes

up
3
geekcom
4 years ago
To find your php.ini just run

php --ini
up
-2
Andy Dodd
8 years ago
Or you could use
php -i | grep php.ini
up
-6
yc
7 years ago
you can also do:

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