php7-mysql-shim icon indicating copy to clipboard operation
php7-mysql-shim copied to clipboard

lib/mysql.php Line 35 braces no longer supportet PHP 8.1

Open TomTheRock opened this issue 9 months ago • 2 comments

Error Line: if ($hostname{1} != ':' && isset(\Dshafik\MySQL::$connections[$hash])) {

Fix: if ($hostname[1] != ':' && isset(\Dshafik\MySQL::$connections[$hash])) {

TomTheRock avatar Feb 06 '25 08:02 TomTheRock