更改两个数组中第一个的值(多维)PHP

发布于 2024-12-07 12:27:33 字数 581 浏览 0 评论 0原文

我想更改多维数组中第一个数组中的数字。我有一个将值输出到数组的代码,并且在我的代码中它没有机会从 1 开始计数。所以我的想法是在声明之后更改从 1 开始的值。我的数组看起来像这样:

Array
(
    [53] => Array
        (
            [name] => Volkswagen
            [regularePrice] => 2139.00
        )

    [54] => Array
        (
            [name] => BMW
            [regularePrice] => 2219.00
        )

    [55] => Array
        (
            [name] => Chrysler
            [regularePrice] => 2399.00
        )
)

我想要 - 经过一段时间或一段时间 - 遍历数组并将值 53 更改为 1、54 更改为 2、55 更改为 3 等等,具体取决于数组的长度。

我该如何实现这个目标?

I want to change the number in the first array in a multidimensional array. I have a code that outputs the value to an array and there is no chance for it to start counting from one - in my code. So my idea is to change the value starting from one - after it has been declared. My array look like this:

Array
(
    [53] => Array
        (
            [name] => Volkswagen
            [regularePrice] => 2139.00
        )

    [54] => Array
        (
            [name] => BMW
            [regularePrice] => 2219.00
        )

    [55] => Array
        (
            [name] => Chrysler
            [regularePrice] => 2399.00
        )
)

I want - through a while or for - go through the array and change the values 53 to 1, 54 to 2, 55 to 3 and so on depending on how long the array is.

How do I accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雅心素梦 2024-12-14 12:27:33

答案是:

array_values($arr);

The answer is:

array_values($arr);
凡尘雨 2024-12-14 12:27:33

你尝试过吗:

$array = array_values($array);

did you try:

$array = array_values($array);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文