PHP 如何处理整数索引的非连续键控数组?
我很好奇在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自数组上的 php 网站:
执行 print_r($b);您的代码给出以下输出:
From php wep site on array:
Executing print_r($b); on your code gives the following output: