InterviewSolution
Saved Bookmarks
| 1. |
How Come The Code Works, But Doesn't For Two-dimensional Array Of Mine? |
|
Answer» Any time you have an array with more than ONE dimension, complex PARSING syntax is required. print "CONTENTS: {$arr[1][2]}" WOULD’ve worked. Any time you have an array with more than one dimension, complex parsing syntax is required. print "Contents: {$arr[1][2]}" would’ve worked. |
|