Warning: A non-numeric value encountered

后端 未结 18 1876
抹茶落季
抹茶落季 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:32

    Hello, In my case using (WordPress) and PHP7.4 I get a warning about numeric value issue. So I changed the old code as follow:

    From:

    $val = $oldval + $val;

    To:

    $val = ((int)$oldval + (int)$val);

    Now the warning disappeared :)

提交回复
热议问题