If I want to add a value in an array, I can use:
$array[] = 'value'; // or...
array_push($array, 'value');
If I want to set the value associated with a key, I can use:
$array['key'] = 'value';
Is there any function I could use instead of the [] syntax?
make your own?