Ok, well I stumbled upon something while looking at a source code. Let's say I have this piece of code:
$array[$key][] = $other_array;
What does [] do? I understand what would happend without it, but I don't understand what happens with it. Can someone please explain? Does it assign $other_array to the next open spot in $array[$key]? Or what?