Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: converting from php

by cees (Curate)
on Nov 21, 2005 at 03:33 UTC ( [id://510347]=note: print w/replies, xml ) Need Help??


in reply to converting from php

Here is a sample script that shows how to do this using the DateTime module. There are probably shorter ways of doing the same thing, but this shows you a small bit of the power of the DateTime module, which can do pretty much anything you ever want to do with dates.

#!/usr/bin/perl use strict; use warnings; use DateTime; use DateTime::Format::Strptime; my $formatter = DateTime::Format::Strptime->new( pattern => '%a, %d %b %Y' ); my $today = DateTime->now( formatter => $formatter ); my @days = (); foreach my $day (1..14) { push @days, $today->clone->add( days => $day ); } print join("\n", @days), "\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://510347]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-04-23 15:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found