Date in Perl
Posted: Mon Apr 14, 2003 9:47 am
This is tha date command for php
$xronos=date("l dS of F h:i:s A");
Whats the equivalent for perl?
$xronos=date("l dS of F h:i:s A");
Whats the equivalent for perl?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
I've moved this post here because it really is the most appropriate place for it.Miscellaneous
XML, Perl, Python, and other languages can be discussed here, even if it isn't PHP (We might forgive you).
Code: Select all
my $now = localtime time;Code: Select all
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime time;