phpmyadmin 遇到 Warning: A non-numeric value encountered

旧城等待, 2022-04-14 05:14 269阅读 0赞

在 PHP7 下出现这个警告,修复方法是,找到 phpmyadmin 的安装目录(Ubuntu 下在 /usr/share/phpmyadmin/),修改文件:libraries/DisplayResults.class.php

在 854 行:

  1. // Move to the next page or to the last one
  2. $endpos = $_SESSION['tmpval']['pos']
  3. + $_SESSION['tmpval']['max_rows'];

修改为:

  1. // Move to the next page or to the last one
  2. $endpos = (int)$_SESSION['tmpval']['pos']
  3. + (int)$_SESSION['tmpval']['max_rows'];

发表评论

表情:
评论列表 (有 0 条评论,269人围观)

还没有评论,来说两句吧...

相关阅读