1); var_dump($blah); 打印 array(-6ren">
gpt4 book ai didi

php - PHP中作为数组键的数字字符串

转载 作者:IT老高 更新时间:2023-10-28 11:52:46 24 4
gpt4 key购买 nike

是否可以使用像 "123" 这样的数字字符串作为 PHP 数组中的键,而无需将其转换为整数?

$blah = array('123' => 1);
var_dump($blah);

打印

array(1) {
[123]=>
int(1)
}

我想要

array(1) {
["123"]=>
int(1)
}

最佳答案

没有;不,不是:

来自 the manual :

A key may be either an integer or a string. If a key is the standard representation of an integer, it will be interpreted as such (i.e. "8" will be interpreted as 8, while "08" will be interpreted as "08").

附录

由于下面的评论,我认为指出该行为与 JavaScript 对象键相似但不相同会很有趣。

foo = { '10' : 'bar' };

foo['10']; // "bar"
foo[10]; // "bar"
foo[012]; // "bar"
foo['012']; // undefined!

关于php - PHP中作为数组键的数字字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4100488/

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