Skip to content

Instantly share code, notes, and snippets.

@evgv
Created December 14, 2017 07:52
Show Gist options
  • Save evgv/ae89c8133390871ca698f3205fa0c6ac to your computer and use it in GitHub Desktop.
Save evgv/ae89c8133390871ca698f3205fa0c6ac to your computer and use it in GitHub Desktop.
php.ini file path

php.ini file path

    $inipath = php_ini_loaded_file();

    if ($inipath) {
        echo 'Loaded php.ini: ' . $inipath;
    } else {
       echo 'A php.ini file is not loaded';
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment