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 使用的哈希函数?
用例 - 运行非常缓慢的非常大的散列。在较小的数据集上,它要快得多,但在较大的数据集上,我的代码运行时间显着增加,而不是我预期的线性增加。
您可以实现ArrayAccess接口并编写自己的类,该类将像一个数组一样,但一切都将由您的代码控制。
ArrayAccess