I could not find the syntax anywhere in the manual .. Why this syntax works and is there a link to the manual to show this is a correct naming for a variable.
$who = array("World", "universe");
echo "${who[0]}"; //i cant find this syntax
echo "$who[0]"; //works
echo "{$who[0]}" ; //works
//echo "${who}[0]"; //cant call because this treats an array as a string
//echo "${who}[0]";//cant call because this treats an array as a string