Warning: A non-numeric value encountered

后端 未结 18 1830
抹茶落季
抹茶落季 2020-11-22 06:15

Recently updated to PHP 7.1 and start getting following error

Warning: A non-numeric value encountered in on line 29

Here is wha

18条回答
  •  没有蜡笔的小新
    2020-11-22 06:20

    I encountered the issue in phpmyadmin with PHP 7.3. Thanks @coderama, I changed libraries/DisplayResults.class.php line 855 from

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

    into

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

    Fixed.

提交回复
热议问题