error_reporting(E_ALL);
$c = php_ini_loaded_file();
var_dump($c);
var_dump(file_get_contents($c));;
string(22) "/usr/local/etc/php.ini"
Warning: file_get_contents() [function.file-get-contents]: open_basedir restriction in effect. File(/usr/local/etc/php.ini) is not within the allowed path(s): (/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/lib/php:/usr/local/share/pear:/pub/home/spezcont) in …
Есть [man]ini_get_all[/man]. Возвращает в виде массива. По идее этот массив можно преобразовать в ini. Может есть сниппет?