Help for this page

Select Code to Download


  1. or download this
    use a_module;
    
    ...
    $global->do_init;
    func1();
    func2();
    
  2. or download this
    use a_module;
    
    ...
    $local->do_init;
    func1($local);
    func2($local);
    
  3. or download this
    use a_module;
    
    ...
    $local->do_init;
    func1(\$local);
    func2(\$local);