PHP手册:Is_Numeric中的数字转换示例1?
作者:互联网
我在PHP文档中遇到了这个例子:
<?php
$tests = array(
"42",
1337,
0x539,
02471,
0b10100111001,
1337e0,
"not numeric",
array(),
9.1
);
foreach ($tests as $element) {
if (is_numeric($element)) {
echo "'{$element}' is numeric", PHP_EOL;
} else {
echo "'{$element}' is NOT numeric", PHP_EOL;
}
}
?>
输出:
'42' is numeric
'1337' is numeric
'1337' is numeric
'1337' is numeric
'1337' is numeric
'1337' is numeric
'not numeric' is NOT numeric
'Array' is NOT numeric
'9.1' is numeric
’42’之后的五个例子都评价为’1337′.我能理解为什么这是’1337e0′(科学记谱法)的情况,但我不明白为什么其他人就是这种情况.
我没有找到任何人在文档的评论中提到它,我没有在这里找到它,所以任何人都可以解释为什么’0x539′,’02471’和’0b10100111001’都评估为’1337′.
解决方法:
输出所有数字时转换为正常表示.这是十进制数字系统和非科学记数法(例如1e10 – 科学浮点数).
十六进制:
十六进制数字以0x开头,后跟任何0-9a-f.
0x539 = 9*16^0 + 3*16^1 + 5*16^2 = 1337
八:
八进制数以0开头,仅包含整数0-7.
02471 = 1*8^0 + 7*8^1 + 4*8^2 + 2*8^3 = 1337
二进制:
二进制数从0开始并包含0和/或1.
0b10100111001 = 1*2^0 + 1*2^3 + 1*2^4 + 1*2^5 + 1*2^8 + 1*2^10 = 1337
标签:isnumeric,evaluation,php 来源: https://codeday.me/bug/20190828/1756218.html