mirror of
https://github.com/vrana/adminer.git
synced 2025-08-06 06:37:33 +02:00
10 lines
444 B
PHP
10 lines
444 B
PHP
<?php
|
|
namespace Adminer;
|
|
|
|
error_reporting(24575); // all but E_DEPRECATED (overriding mysqli methods without types is deprecated)
|
|
set_error_handler(function ($errno, $errstr) {
|
|
// "Undefined array key" mutes $_GET["q"] if there's no ?q=
|
|
// "Undefined offset" and "Undefined index" are older messages for the same thing
|
|
return !!preg_match('~^Undefined (array key|offset|index)~', $errstr);
|
|
}, E_WARNING | E_NOTICE); // warning since PHP 8.0
|