Help for this page

Select Code to Download


  1. or download this
     $something->set_call_back( \&localfunction );
    
  2. or download this
      $something->set_call_back( \$this->func );
      # or
      $something->set_call_back( \&{ $this->func });
      # and
      $something->set_call_back( \( $this->func ) );