I have tried the following:
$myArray = array();
array_push($myArray,"A"=>array("x","y"));
I get prompted with this error:
Parse error: syntax error, unexpected '=>' (T_DOUBLE_ARROW)
Is the above possible to do in PHP?
Am I doing something wrong?
Is there a more conventional way of doing this?