Help for this page

Select Code to Download


  1. or download this
    print $result->get_subscribers()->get_Subscriber().[1]->get_firstName;
  2. or download this
    print $result->get_subscribers->get_Subscriber->[0]->get_firstName;
    
  3. or download this
    print $result->get_subscribers->[0]->get_firstName;
    
  4. or download this
    print( ($result->get_subscribers)[0]->get_firstName );