宝塔面板使用php7.4后,phpmyadmin出现一大堆错误的解决方案

DisplayResults.class.php

第1190行改为:

$col_visib ? $col_visib[$j] : $j

 

 

 

顺带解决:Function get_magic_quotes_gpc() is deprecated

common_inc.php 261行变更为

//if (get_magic_quotes_gpc()) {
    PMA_arrayWalkRecursive($_GET, 'stripslashes', true);
    PMA_arrayWalkRecursive($_POST, 'stripslashes', true);
    PMA_arrayWalkRecursive($_COOKIE, 'stripslashes', true);
    PMA_arrayWalkRecursive($_REQUEST, 'stripslashes', true);
//}

你可能感兴趣的:(php)