Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 333 Bytes

array_count.md

File metadata and controls

24 lines (13 loc) · 333 Bytes

Funzione array_count

Conta il numero di occorrenze di un dato valore in un array.

Sintassi

array_count(array,value)

Argomenti

  • array un array
  • value un valore da contare

Esempi

  • array_count(array('a', 'b', 'c', 'b'), 'b') → 2

nota bene

osservazioni

--