Help for this page

Select Code to Download


  1. or download this
    if ($_[1] == "1")
    {push @{{$_[2]}{$_[0]}{$_[1]}}, $_[3];}
    
  2. or download this
    my ( $w, $x, $y, $z ) = @_;
    if ( $x == 1 ) { # or $x eq "1"
      push @{{$y}{$w}{$x}}, $z;
    }
    
  3. or download this
    @{$y->{$w}->{$x}}