D.44. HASHKEYS()

HASHKEYS(hashname)
Gibt die Schlüssel in einem Hash (Abschnitt D.43, „HASH()) als kommaseparierte Liste zurück.
exten => 123,1,Set(HASH(warenkorb,aepfel)=5)
exten => 123,n,Set(HASH(warenkorb,birnen)=3)
exten => 123,n,Set(HASH(warenkorb,kartoffeln)=2)
exten => 123,n,Verbose(1,Schluessel in warenkorb: ${HASH(warenkorb)})
Asterisk-Versionen:
        |     |        |     |        | 1.6 |————————
Interner Hilfetext zu dieser Funktion in Asterisk 1.6:
  -= Info about function 'HASHKEYS' =-

[Syntax]
HASHKEYS(<hashname>)

[Synopsis]
Retrieve the keys of a HASH()

[Description]
Returns a comma-delimited list of the current keys of an associative array
defined by the HASH() function.  Note that if you iterate over the keys of
the result, adding keys during iteration will cause the result of the HASHKEYS
function to change.
Differenz des internen Hilfetexts von Asterisk 1.4 zu 1.6:
— in Asterisk 1.4 nicht vorhanden —