我刚刚安装了MySQL 服务器版本:5.7.23-0ubuntu0.16.04.1-(Ubuntu)和phpMyAdmin 版本信息:4.5.4.1deb2ubuntu2 当我通过phpMyAdmin访问数据库时,它显示警告消息
./ libraries / dbi / DBIMysqli.class.php#522中的通知
有人可以帮忙吗?
答案 0 :(得分:2)
答案 1 :(得分:1)
打开 DBIMysqli.class.php
文件。
/usr/share/phpmyadmin/libraries/dbi/DBIMysqli.class.php
然后转到行号: 522
在替换此行代码之前
$fields[$k]->type = $typeAr[$field->type];
替换此行后
$fields[$k]->type = isset($typeAr[$field->type]) ? $typeAr[$field->type] : null;