Help for this page

Select Code to Download


  1. or download this
    my $query = new MyPackage::Query("utf8"); 
    my $query2 = new MyPackage::Query("euc-jp");
    
  2. or download this
    sub new {
        my $class = shift;
        $self->{input_enc} = shift;  
    ...
        bless($self, $class);
        return $self;
    }