Skip to content

Latest commit

 

History

History
26 lines (14 loc) · 368 Bytes

array_remove_at.md

File metadata and controls

26 lines (14 loc) · 368 Bytes

Funzione array_remove_at

Restituisce un array con l'indice passato rimosso.

Sintassi

  • array_remove_at(array, pos)

Argomenti

  • array un array
  • pos la posizione da rimuovere (partendo da 0)

Esempi

  • array_remove_at(array(1,2,3),1) → array: 1,3

nota bene

--

osservazioni

--