gpt4 book ai didi

php - 这是PHP中的错误吗?

转载 作者:行者123 更新时间:2023-12-02 05:21:20 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
php array behaving strangely with key value 07 & 08

我在 PHP 中发现了一些奇怪的东西,如果我使用数字数组,第 8 个数组将被忽略,这里当我将 'Cherry' 放入 $fruit[08] 时,php 会跳过它。

这是怎么回事?这是错误还是其他原因。

<pre>
<?php

$fruit[01] = "Apples";
$fruit[02] = "Pears";
$fruit[03] = "Bananas";
$fruit[04] = "Grape";
$fruit[05] = "Orange";
$fruit[06] = "Peach";
$fruit[07] = "Lemon";
$fruit[08] = "Cherry";
$fruit[09] = "Mango";

print_r($fruit);

?>
</pre>

输出:

Array
(
[1] => Apples
[2] => Pears
[3] => Bananas
[4] => Grape
[5] => Orange
[6] => Peach
[7] => Lemon
[0] => Mango
)

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