栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

PHP Warning: A non-numeric value encountered 错误解决办法用法

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

PHP Warning: A non-numeric value encountered 错误解决办法用法

PHP 7.1 后的版本,经常收到 A non-numeric value encountered 的 warning 信息。


比如下面这段代码:

$a = '123a';
$b = 'b456';
echo $a+$b;


PHP 7.1 新 E_WARNING

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

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),把字符串转换成数字:

$a = '123a';
$b = 'b456';
echo intval($a)+intval($b);


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/824811.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号