示例#1
0
 function call_a_singer()
 {
     $person = new Singer();
     $name = $person->getName();
     echo $name;
     //Prints John
 }