Here is the problem:
$arr = array(array());
$arr[0]['a'] = 'for 0.a';
$arr[0]['b'] = 'for 0.b';
$arr[1]['a'] = 'for 1.a';
$arr[1]['b'] = 'for 1.b';
array_push($arr,'for 2.a');
array_push($arr,'for 2.b');
print_r($arr);
String "for 2.a" should be in $arr[2]['a']
. How can I do?