PTools::Date::Format is an OO interface to Date::Format, with additions.
SYNOPSIS
Procedural Interface
use PTools::Date::Format qw( :orig );
use PTools::Date::Format qw( :orig date1 );
use PTools::Date::Format qw( time2str strftime ctime asctime );
use PTools::Date::Format qw( time2str strftime date1 );
print time2str( "%c is day %u in week %U%n", time() );
Object Oriented Interface
use PTools::Date::Format;
use PTools::Date::Format qw( date1 );
$date = new PTools::Date::Format;
$date = "PTools::Date::Format";
print $date->time2str( "%c is day %u in week %U%n", time() );
Modified Conversion Specification
use PTools::Date::Format qw( :orig date1 );
use PTools::Date::Format qw( date1 );
Product's homepage
Requirements:
· Perl