We are working on a Monopoly game in PHP as a class project and none of us cab figure this out. We need to create and use a multidimentional array for the properties in the game. Below is an example of what this looks like.
$arr2=array();
$prop=array(1,3,6);
$cost=array(60,60,100);
$stuff=$prop[0];
$arr2[$stuff][9]=$cost[0];
echo"$stuff --- $arr2[$stuff][9]"; //(this is line 64)
When we try to run this, we get this output.
Notice: Array to string conversation in ... line 64
1 --- Array[9]
Why is it giving us "Array[9]" instead of 60? Thank you for your time.
echo "{$stuff} --- {$arr2[$stuff][9]}";try this