Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 关联数组是如何在 PHP 中实现的?
任何人都可以帮助我了解关联数组背后的数据结构。我试图从过去几天中找出它。
它是一个有序的哈希映射。这是 php 的创建者这样说的:http: //www.mail-archive.com/internals@lists.php.net/msg59849.html
在计算中,哈希表(也称为哈希映射)是一种用于实现关联数组的数据结构,关联数组是一种可以将键映射到值的结构。
有关详细信息,请参阅以下 wiki 链接
http://en.wikipedia.org/wiki/Hash_table