mirror of
https://github.com/vrana/adminer.git
synced 2025-12-29 11:50:46 +01:00
8 lines
353 B
PHP
8 lines
353 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) {
|
|
return !!preg_match('~^(Trying to access array offset on( value of type)? null|Undefined (array key|property))~', $errstr);
|
|
}, E_WARNING | E_NOTICE); // warning since PHP 8.0
|