Suppose I have such an array:
$arr = array();
and such
$mas = array("g"=>"minsk","c"=>"gomel");
With this assignment
$arr[] = $mas;
it turns out a two-dimensional array or all the same one-dimensional?
"minsk","c"=>"gomel");...">
Source: https://ru.stackoverflow.com/questions/33079/
All Articles