3 function doEcho($data){
7 function multiply($num){
9 throw new Exception('Call to multiply with a value that is not a number');
14 function getTree($id){
17 for($i = 1; $i <= 5; ++$i){
18 array_push($out, array(
24 }else if(strlen($id) == 2){
25 $num = substr($id, 1);
26 for($i = 1; $i <= 5; ++$i){
27 array_push($out, array(
29 'text'=>'Node ' . $num . '.' . $i,