PHP 如何处理整数索引的非连续键控数组?

发布于 2024-10-14 10:18:04 字数 191 浏览 7 评论 0原文

我很好奇在 PHP 中存储具有不连续整数索引的数组的效率如何。

如果我有一个数组,

$b = array();
$b[1] = "Hello";
$b[18] = "World";
$b[999] = "Test";

这些键是否被存储,然后散列到一个新数组,PHP 如何处理这个问题?

I'm curious as to how efficient it is in PHP to store an array with integer indices that are non-consecutive.

If I had an array

$b = array();
$b[1] = "Hello";
$b[18] = "World";
$b[999] = "Test";

Are those keys stored, and then hashed to a new array, how does PHP handle this?

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

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

发布评论

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

评论(1

情丝乱 2024-10-21 10:18:04

来自数组上的 php 网站

PHP 中的数组实际上是一个有序映射。映射是将值与键关联起来的类型。该类型针对多种不同用途进行了优化;它可以被视为数组、列表(向量)、哈希表(映射的实现)、字典、集合、堆栈、队列等。由于数组值可以是其他数组,因此树和多维数组也是可能的。

执行 print_r($b);您的代码给出以下输出:

Array
(
    [1] => Hello
    [18] => World
    [999] => Test
)

From php wep site on array:

An array in PHP is actually an ordered map. A map is a type that associates values to keys. This type is optimized for several different uses; it can be treated as an array, list (vector), hash table (an implementation of a map), dictionary, collection, stack, queue, and probably more. As array values can be other arrays, trees and multidimensional arrays are also possible.

Executing print_r($b); on your code gives the following output:

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