Dmitry Sagaev > EasyDate > easyDate

Download:
EasyDate-103.zip

Annotate this POD

CPAN RT

Open  0
Report a bug
Source  

NAME ^

easyDate - A easy Interface For Date Objects;

SYNOPSIS ^

        use easyDate;
        
        my $obj = new easyDate(21,07,2005);
        my $newObj = new easyDate;


        $newObj->setDate(1,1,2005);
        $newObj->day(15);
        $newObj->mon(12);

        $result = &easyDate::compare($obj,$newObj);
        
        unless ($result) { print "Objects are equal!"; }

        $newObj = &easyDate::get_tDate;

        $newObj->print; 

DESCRIPTION ^

This module provides a fairly easy interface for creating and using date objects.

Methods

new

Returns a new easyDate object. It can takes three arguments: The day, the month and the year.

check readme for more information.

INSTALLATION ^

Just download the file to whatever location you like and use it in your scripts.

BUGS ^

Not known.

AUTHOR ^

Dmitry Sagaev - <zurik@mail.ru>

SEE ALSO ^

Time::Local