php – 具有某些值的数组中的意外行为

前端之家收集整理的这篇文章主要介绍了php – 具有某些值的数组中的意外行为前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的代码是:
$arr=[02,05,07,08,09];
print_r($arr)

输出是:

Array
(
    [0] => 2
    [1] => 5
    [2] => 7
    [3] => 0
    [4] => 0
)

为什么它将08和09转换为0?

它被认为是八进制数.因为你从零开始.
$a = 1234; // decimal number
$a = -123; // a negative number
$a = 0123; // octal number (equivalent to 83 decimal)
$a = 0x1A; // hexadecimal number (equivalent to 26 decimal)
$a = 0b11111111; // binary number (equivalent to 255 decimal)
原文链接:https://www.f2er.com/php/130468.html

猜你在找的PHP相关文章