2007-06-29から1日間の記事一覧

やらなかった部分の知識がまるっと無いようだ

完成させるしかないな.ひどすぎるw

HTTP::Status

LWPに入ってる.ステータスコードを元にした名前のサブルーチンをexportして,定数を作成.あとステータスコードの種類をチェックするための関数(is_*),ステータスコードからメッセージを返す関数(status_message)もある use HTTP::Status; my $rc = 302; i…

ちゃんと使えてないモジュールが多すぎる

勉強する.書く

DateTime::Format::*

DateTimeのオブジェクトをDateTime::Format::*でフォーマットする use DateTime; use DateTime::Format::W3CDTF; my $fmt = DateTime::Format::W3CDTF->new; my $dt = DateTime->now(time_zone => 'Asia/Tokyo'); print $fmt->format_datetime($dt); #2007-0…

DateTime::Format::Japanese

number_formatやyear_formatをhashで指定する場合,ダブルクォートで囲わないとエラーが出る Bareword "FORMAT_ROMAN" not allowed while "strict subs" in use at dt-format.pl line 17. Execution of dt-format.pl aborted due to compilation errors. PBP…