How come code
<?php print "Contents: $arr[1]"; ?>
works, but
<?php print "Contents: $arr[1][2]"; ?>
doesn't for two-dimensional array of mine?

Submitted by: Murtaza
Any time you have an array with more than one dimension, complex parsing syntax is required. print "Contents: {$arr[1][2]}" would've worked. /> - Yes.
Submitted by: Murtaza

Read Online WordPress Development Job Interview Questions And Answers