Arreglos Ordenados
<?php
$a[0] = 1;
$a[1] = "foo";
$a[] = 1.57;
?>
Arreglos Associativos
<?php
$catch_it['gato'] = "ratón";
$catch_it['tigre'] = "venado";
?>
Manipulación de arreglos
- Ordenamiento: sort(), rsort(), ksort(), usort(), array_multisort()
- Iteración: reset(), end(), next(), each(), current(), key(), array_walk()
- Avanzado: array_diff(), array_intersect(), array_merge(), array_merge_recursive(), array_slice(), array_splice(), y mucho mas...