I don't know how about you, but I'm not very fond of the way arrays are constructed in PHP. I have this feeling that I use array
keyword way too often ve that array($k => $v)
or e.g. array($k1=>array($k2=>$v))
are way too long given usefulness of maps.
(Moreover, recently I've learned JS way of doing it ve now I really am jealous)
Ben bu durumu düzeltmek için birlikte gelebilir en iyisi:
function a() { // array
return func_get_args();
}
ve
function h() { // hash
$array=array();
for($i=0; $i<func_num_args()-1; $i+=2) {
$array[func_get_arg($i)]=func_get_arg($i+1);
}
return $array;
}
... Ama onlar =>
operatörünü kullanarak izin vermez.
Diğer fikirler?