HTTP::Headers::ActionPack::DateHeader(3pm) | User Contributed Perl Documentation | HTTP::Headers::ActionPack::DateHeader(3pm) |
HTTP::Headers::ActionPack::DateHeader - A Date Header
version 0.09
use HTTP::Headers::ActionPack::DateHeader; # create from string my $date = HTTP::Headers::ActionPack::DateHeader->new_from_string( 'Mon, 23 Apr 2012 14:14:19 GMT' ); # create using Time::Peice object my $date = HTTP::Headers::ActionPack::DateHeader->new( $timepeice_object );
This is an object which represents an HTTP header with a date. It will inflate the header value into a Time::Piece object and proxy most of the relevant methods.
I opted to not use DateTime (by default) for this class since it is not a core module and can be a memory hog at times. That said, it should be noted that DateTime objects are compatible with this class. You will need to pass in a DateTime instance to "new" and after that everything should behave properly. If you want "new_from_string" to inflate strings to DateTime objects you will need to override that method yourself.
Stevan Little <stevan.little@iinteractive.com>
This software is copyright (c) 2012 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-06-14 | perl v5.34.0 |