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

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1740100159, '3.22.241.222', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/web/php/snippets/ini/get_all(53): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78