A recent post gives an example of targeting a value in a nest of multidimensional arrays with data objects in a framework. The answer for this question turned out a long string of names connected with "->" operators similar to this (with actual named objects and arrays where here I use generic terms):
$object->object->object->array[index]->array['key']['key']->array['key']['key']
Unfortunately the post closed before I could post my clarifying question :( I've seen examples similar to this,
$object->($object->property)
...which uses parenthesis. Are there other syntax variations? What are the syntax restrictions to writing these statements in PHP?