Verified
<?php print “Contents: $arr[1]“; ?>
works, however
<?php print “Contents: $arr[1][2]“; ?>
Any time you contain an array with more than one dimension, complex parsing syntax is needed. print “Contents: {$arr[1][2]}” would’ve worked. /> - Yes.