Warning: Declaration of The_Bootstrap_Nav_Walker::start_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = NULL) in /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php on line 15

Warning: Declaration of The_Bootstrap_Nav_Walker::start_el(&$output, $item, $depth, $args) should be compatible with Walker_Nav_Menu::start_el(&$output, $data_object, $depth = 0, $args = NULL, $current_object_id = 0) in /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php on line 22

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775

Warning: Cannot modify header information - headers already sent by (output started at /home/ebitem/www/ebitem/wp-content/themes/the-bootstrap/inc/nav-menu-walker.php:0) in /home/ebitem/www/ebitem/wp-includes/rest-api/class-wp-rest-server.php on line 1775
{"id":89,"date":"2011-08-01T20:00:33","date_gmt":"2011-08-01T11:00:33","guid":{"rendered":"http:\/\/ebitem.net\/program-blog\/?p=89"},"modified":"2011-08-01T20:00:33","modified_gmt":"2011-08-01T11:00:33","slug":"perl%e3%83%8f%e3%83%83%e3%82%b7%e3%83%a5%e3%81%ae%e3%82%bd%e3%83%bc%e3%83%88%e6%96%b9%e6%b3%95%e4%b8%80%e8%a6%a7","status":"publish","type":"post","link":"http:\/\/program.ebitem.net\/archives\/89","title":{"rendered":"[Perl]\u30cf\u30c3\u30b7\u30e5\u306e\u30bd\u30fc\u30c8\u65b9\u6cd5\u4e00\u89a7"},"content":{"rendered":"

Perl\u3067\u306e\u30cf\u30c3\u30b7\u30e5\u30bd\u30fc\u30c8\u65b9\u6cd5\u3092\u30e1\u30e2\u30e1\u30e2\u3002<\/p>\n

\u6587\u5b57\u30b3\u30fc\u30c9\u306fUTF-8\u3067\u3059\u3002<\/p>\n

\nuse strict;\nuse warnings;\nuse utf8;\nuse Encode qw\/encode\/;\n\nmy %hash = (\n\tc =&gt; 'bb',\n\td =&gt; 'aa',\n\ta =&gt; 'dd',\n\tb =&gt; 'cc',\n);\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6587\u5b57\u5217\u6607\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6587\u5b57\u5217\u6607\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6587\u5b57\u5217\u964d\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6587\u5b57\u5217\u964d\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort {$b cmp $a} keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6587\u5b57\u5217\u6607\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6587\u5b57\u5217\u6607\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort { $hash{$a} cmp $hash{$b} } keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6587\u5b57\u5217\u964d\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6587\u5b57\u5217\u964d\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort { $hash{$b} cmp $hash{$a} } keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n\n%hash = (\n\t3 =&gt; 22,\n\t4 =&gt; 11,\n\t1 =&gt; 44,\n\t2 =&gt; 33,\n);\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u6607\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u6607\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort {$a  $b} keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u964d\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u964d\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort {$b  $a} keys %hash) {\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6570\u5024\u6607\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6570\u5024\u6607\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort { $hash{$a}  $hash{$b} } keys %hash){\n\tprint "$key, $hash{$key}\\n";\n}\n\n# \u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6570\u5024\u964d\u9806\u30bd\u30fc\u30c8\nprint encode('UTF-8', "\u30cf\u30c3\u30b7\u30e5\u306e\u5024\u3067\u6570\u5024\u964d\u9806\u30bd\u30fc\u30c8\\n");\nforeach my $key (sort { $hash{$b}  $hash{$a} } keys %hash){\n\tprint "$key, $hash{$key}\\n";\n}\n<\/pre>\n

\u305f\u3076\u3093\u3053\u308c\u3067\u5408\u3063\u3066\u308b\u306f\u305a\u2026\u3002<\/p>\n

\u203b2011\/08\/02\u8ffd\u8a18
\n\u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u6607\u9806\u3001\u964d\u9806\u30bd\u30fc\u30c8\u304c\u601d\u3044\u3063\u304d\u308a\u9593\u9055\u3063\u3066\u3044\u305f\u306e\u3067\u4fee\u6b63\u3057\u307e\u3057\u305f\u3002
\n\u3054\u6307\u6458\u3044\u305f\u3060\u304d\u3042\u308a\u304c\u3068\u3046\u3054\u3056\u3044\u307e\u3059m(_ _)m<\/p>\n","protected":false},"excerpt":{"rendered":"

Perl\u3067\u306e\u30cf\u30c3\u30b7\u30e5\u30bd\u30fc\u30c8\u65b9\u6cd5\u3092\u30e1\u30e2\u30e1\u30e2\u3002 \u6587\u5b57\u30b3\u30fc\u30c9\u306fUTF-8\u3067\u3059\u3002 \u305f\u3076\u3093\u3053\u308c\u3067\u5408\u3063\u3066\u308b\u306f\u305a\u2026\u3002 \u203b2011\/08\/02\u8ffd\u8a18 \u30cf\u30c3\u30b7\u30e5\u306e\u30ad\u30fc\u3067\u6570\u5024\u6607\u9806\u3001\u964d\u9806\u30bd\u30fc\u30c8\u304c\u601d\u3044\u3063\u304d\u308a\u9593\u9055\u3063\u3066\u3044\u305f\u306e\u3067\u4fee\u6b63\u3057\u307e\u3057\u305f\u3002 \u3054\u6307\u6458\u3044… Continue reading →<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[12],"_links":{"self":[{"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/posts\/89"}],"collection":[{"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/comments?post=89"}],"version-history":[{"count":0,"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/posts\/89\/revisions"}],"wp:attachment":[{"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/media?parent=89"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/categories?post=89"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/program.ebitem.net\/wp-json\/wp\/v2\/tags?post=89"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}