gpt4 book ai didi

php 整数值未按方面显示

转载 作者:行者123 更新时间:2023-12-02 14:52:46 25 4
gpt4 key购买 nike

编码时我得到了意想不到的结果。

我不确定如何提出这个问题,所以我将输入我的代码和结果:

$variable = 012;
$variable2 = 12;
$variable3 = '012';

当我回显变量时:

预期结果:

$variable: 12 
$variable2: 12
$variable3: 012

结果:

$variable: 10 
$variable2: 12
$variable3: 012

这里发生了什么?

最佳答案

请参阅documentation php 的整数

然后您会看到以下内容:

To use octal notation, precede the number with a 0

所以八进制 12 就是十进制 10

<小时/>

文档的更多信息

<?php
$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)

关于php 整数值未按方面显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16959308/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com