Search notes:

PHP code snippets: ini_get_all

ini_get_all() returns directive names/values.
print('<table>');
foreach ($i as $key_ => $value_) {
        print("<tr><td>$key_</td><td>" .
        $value_['global_value'] . '</td><td>' .
        $value_['local_value' ] . '</td><td>' .
        $value_['access'      ] . '</td></tr>'
       );
}
print('</table>');

See also

The php.ini file.
The -c and -d command line options
Other PHP snippets

Index