in reply to Re: What's "Better" DateTime or localtime?
in thread What's "Better" DateTime or localtime?

Humm... Looking at the Synopsis of the Time::Piece Module again I noticed it also uses localtime.

So since it uses "localtime" does that mean when you include the Module, that it actually modifies what
localtime will output..?


Thanks Again,
Matt

  • Comment on Re^2: What's "Better" DateTime or localtime?

Replies are listed 'Best First'.
Re^3: What's "Better" DateTime or localtime?
by runrig (Abbot) on Jul 11, 2013 at 18:22 UTC
    So since it uses "localtime" does that mean when you include the Module, that it actually modifies what localtime will output?

    By default, yes, it exports and overrides localtime. If you don't want to do that, you can import nothing:

    use Time::Piece qw();
    If I do want to override localtime, I will usually explicitly import it:
    use Time::Piece qw(localtime);
      After playing around with the Time::Piece Module for a bit I think I'm going to use that instead as you suggested.

      It seems like there's a ton more Methods available for it including this one which is cool --> $date->mdy("/").
      It looks like there is about, like 50-60 methods available for the Module so it seems pretty flexible...

      I like it!

      Thanks Again,
      Matt

        Don't forget that Time::Piece delegates strftime() and strptime() too! :)

        perl -MTime::Piece -le'print localtime->strftime("%m/%d/%Y %T")'

        jeffa

        L-LL-L--L-LL-L--L-LL-L--
        -R--R-RR-R--R-RR-R--R-RR
        B--B--B--B--B--B--B--B--
        H---H---H---H---H---H---
        (the triplet paradiddle with high-hat)
        
      Hey runrig, thanks again for the reply!

      Ahh haa, Ok that makes sense... Cool, thanks for the info!


      Thanks Again,
      Matt