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