dedlfix: Assoziatives, mehrdimensionales Array sortieren

Beitrag lesen

Tach!

Echte Arrays, also mit Indexzugriff, haben eine Reihenfolge und können daher sortiert werden. Assoziative Arras sind für mich Strukturen mit benannten Elementen.

PHPs Array-Struktur ist anders als nur ein einfaches Array anderenorts.

„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.“

Wie der Handbuchtext sagt, kann man es für eine ganze Reihe weiterer Aufgaben nutzen, für die man in anderen Systemen spezialisierte Strukturen verwendet.

dedlfix.