- or download this
$today = &day($mon,$day,$year) ;
- or download this
$today = &day($day,$mon,$year) ;
- or download this
use POSIX qw( strftime );
use Time::Local qw( timegm );
print strftime("%a", gmtime(timegm(0, 0, 0, $day, $mon-1, $year)));
- or download this
use POSIX qw( strftime );
use Time::Local qw( timelocal );
print strftime("%a", localtime);