when reading other people"s code in the material, I found a way to assign values to php two-dimensional arrays. Here is a simple example
$call["a"][]="1";
$call["a"][]="2";
the result of this assignment is
array (size=1)
"a" =>
array (size=2)
0 => string "1" (length=1)
1 => string "2" (length=1)
I want to know what the principle is.