The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Time::Moment::Ext - Extend Time::Moment with strptime and SQL dates support

SYNOPSIS

    use Time::Moment::Ext;

    my $tm = Time::Moment::Ext->from_datetime('2015-01-18');

    my $tm2 = Time::Moment::Ext->from_datetime('2015-01-20 10:33:45');

    my $tm3 = Time::Moment::Ext->strptime('2015-01-20 10:33:45', '%Y-%m-%d %H:%M:%S');

    say $tm->to_datetime;

    say $tm2->to_date;

    say $tm3->to_time;

    say $tm->day;

    # (you can use all other methods from Time::Moment)

DESCRIPTION

Time::Moment::Ext - Extend Time::Moment with strptime and SQL dates support

SUBROUTINES/METHODS

strptime

The method use all strptime features from Time::Piece

from_datetime

Converting SQL data/datetime string to Time::Moment object

to_datetime

Converting Time::Moment object to SQL datetime string

to_date

Converting Time::Moment object to date string

to_time

Converting Time::Moment object to time string

day

Return the day of month (alias to day_of_month)

CONFIGURATION AND ENVIRONMENT

DIAGNOSTICS

INCOMPATIBILITIES

BUGS AND LIMITATIONS

DEPENDENCIES

VERSION

version 0.05

AUTHOR

Konstantin Cherednichenko dshadowukraine@gmail.com

LICENSE AND COPYRIGHT

Copyright 2017 (c) Konstantin Cherednichenko.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.