Help for this page

Select Code to Download


  1. or download this
    $array[0]{'key'} = "testline";
    $item = $array[0];
    print $item->{key}; #will print "testline"
    
  2. or download this
    %item = %{$array[0]};
    print $item{key};