De traductores profesionales, empresas, páginas web y repositorios de traducción de libre uso.
$arr = array( 5 = 1, 12 = 2); $arr[] = 56; / / this is the same as $arr[13] = 56; / / at this point of the script $arr["x"] = 42; / / this adds a new element to / / the array with key "x "unset($arr[5]); / / this removes the element from the array unset($arr); / / this deletes the whole array
useful functions