前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >PHP 7.1 的 A non-numeric value encountered 错误和解决方法

PHP 7.1 的 A non-numeric value encountered 错误和解决方法

作者头像
Denis
发布2023-04-15 10:11:13
1.5K0
发布2023-04-15 10:11:13
举报
文章被收录于专栏:WordPress果酱WordPress果酱

升级到 PHP 7.1 之后,经常收到 A non-numeric value encountered 的 warning 信息。比如下面这段代码:

代码语言:javascript
复制
$a = '123a';
$b = 'b456';

echo $a+$b;

PHP 7.1 新 E_WARNING

这是 PHP7.1 新增的 waring 信息,官方的解释是:

代码语言:javascript
复制
New E_WARNING and E_NOTICE errors have been introduced when invalid strings are coerced using operators expecting numbers (+ - * / ** % << >> | & ^) or their assignment equivalents. An E_NOTICE is emitted when the string begins with a numeric value but contains trailing non-numeric characters, and an E_WARNING is emitted when the string does not contain a numeric value.

在使用 (+ - * / ** % << >> | & ^) 这些运算操作符时,例如 a+b,如果 a(123a) 和 b(b456) 包含非数字字符时,就会有 A non-numeric value encountered 警告。

解决方法

对于这种问题,首先应该在代码逻辑查看,为何会出现混合数值,检查哪里导致出现混合数值。

对于(+ - * / ** % << >> | & ^) 的运算,可以使用强制类型转换方法 (intval),把字符串转换成数字:

代码语言:javascript
复制
$a = '123a';
$b = 'b456';

echo intval($a)+intval($b);

本文参与?腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客?前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与?腾讯云自媒体同步曝光计划? ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • PHP 7.1 新 E_WARNING
  • 解决方法
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档
http://www.vxiaotou.com