DateTime::Format::Human - Format times in "spoken language"


Back to Top


NAME

DateTime::Format::Human - Format times in "spoken language"

Back to Top


SYNOPSIS

    use DateTime;
    use DateTime::Format::Human;
    my $dtfh = DateTime::Format::Human->new(
        evening => 19,
        night   => 23,
    );
    my $spoken_time = $dtfh->format_datetime( DateTime->now );
    print "The time is now $spoken_time\n";

Back to Top


DESCRIPTION

This module provides a "vague" rendering of the time into natural language; it's originally intended for text-to-speech applications and other speech-based interfaces.

Back to Top


USAGE

Import Parameters

This module accepts no arguments to it's import method and exports no symbols.

Methods

Constructors

Object Methods

Back to Top


CREDITS

Simon Cozens (SIMON) who wrote the Time::Human manpage from which this module is a genetic descendant.

Everyone at the DateTime Asylum.

Back to Top


SUPPORT

Support for this module is provided via the datetime@perl.org email list. See http://lists.perl.org/ for more details

Back to Top


AUTHOR

Joshua Hoblitt <jhoblitt@cpan.org>

Back to Top


COPYRIGHT

Copyright (C) 2004 Joshua Hoblitt. All rights reserved. Sections of the code and documentation are Copyright (C) 2001 Simon Cozens.

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

The full text of the license can be found in the LICENSE file included with this module, or in perlartistic and perlgpl Pods as supplied with Perl 5.8.1 and later.

Back to Top


SEE ALSO

datetime@perl.org mailing list

http://datetime.perl.org/

DateTime

Back to Top

 DateTime::Format::Human - Format times in "spoken language"