Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 474 Bytes

hashtables.rst

File metadata and controls

16 lines (12 loc) · 474 Bytes

Hashtables

Hashtables are one of the most important structures used by PHP. They form the basis for arrays, object properties, symbol tables and have countless other applications throughout the engine. This chapter will introduce how hashtables work and cover the related APIs in detail.

Contents:

.. toctree::
    :maxdepth: 2

    hashtables/basic_structure.rst
    hashtables/hashtable_api.rst
    hashtables/array_api.rst
    hashtables/hash_algorithm.rst