Help for this page

Select Code to Download


  1. or download this
    $obj = new theModule;
    $obj->funcA('own');
    ...
        print "funcB in Y is called\n";
    }
    
  2. or download this
    funcA in theModule got called, param = own
    funcB in theModule is called
    ...
    
    funcA in theModule got called, param = SUPER
    funcB in Y is called