Help for this page

Select Code to Download


  1. or download this
    # method chaining
    $cont1->get_elem('name')->do_something();
    ...
    # identical to
    $elem1 = $cont1->get_elem('name');
    $elem1->do_something();