Help for this page

Select Code to Download


  1. or download this
    my ($x, $z) = (split(",",'7,8,9'))[0,2];
    
  2. or download this
    my ($day, $month, $year) = (localtime())[3,4,5];
    
  3. or download this
    ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();
    (undef,undef,undef,$mday,$mon,$year) = localtime();