Help for this page

Select Code to Download


  1. or download this
    @array1=(
        [1,2,3],
        [4,5,6],
        [7,8,9]
    );
    
  2. or download this
    $array2[1]=$array1[1]
    
  3. or download this
    $array1[1][0]='something';
    
  4. or download this
    print $array2[1][0]; # shows 'something'