Help for this page

Select Code to Download


  1. or download this
    push @ip_time, $entry;
    
  2. or download this
    push @ip_time, [ split /,/ ];
    
  3. or download this
    use strict;
    use Data::Dumper;
    ...
    push @ip_time, [ @{$entry}[0,5] ];
     
    print Dumper(@ip_time);