{"id":563,"date":"2009-08-07T18:09:52","date_gmt":"2009-08-07T09:09:52","guid":{"rendered":"http:\/\/popi.jp\/wp\/?p=563"},"modified":"2009-08-12T11:47:53","modified_gmt":"2009-08-12T02:47:53","slug":"php-bug","status":"publish","type":"post","link":"https:\/\/popi.jp\/wp\/?p=563","title":{"rendered":"php bug"},"content":{"rendered":"<p>PHP\u30925.2.10\u306b\u3057\u3066\u304b\u3089\u6570\u65e5\u3002<br \/>\n5.3\u7cfb\u3067\u304a\u304d\u3066\u3044\u305fdeprecated\u3082\u51fa\u306a\u304f\u306a\u308a\u305d\u308c\u306a\u308a\u306b\u52d5\u3044\u3066\u3044\u308b\u3068\u601d\u3063\u3066\u3044\u307e\u3057\u305f\u3002<\/p>\n<p>\u3057\u304b\u30fc\u3057\u3002\u3075\u3068Blog\u306b\u6295\u7a3f\u3057\u3066\u307f\u305f\u3068\u304d\u306b\u4e0d\u5177\u5408\u304c\u3002<br \/>\n\u300c\u6295\u7a3f\u3057\u305f\u3082\u306e\u304c\u8868\u793a\u3055\u308c\u306a\u3044\u300d<br \/>\n\u3093\u30fc\u3002\u306a\u305c\u306b\u3002<\/p>\n<p>\u7ba1\u7406\u753b\u9762\u3067\u78ba\u8a8d\u3057\u3066\u307f\u305f\u3089\u6295\u7a3f\u81ea\u4f53\u306f\u3042\u308b\u3082\u306e\u306e\u3001\u65e5\u4ed8\u304c\u300c0000-07-24\u300d\u3068\u304b\u306b\u306a\u3063\u3066\u3044\u308b\u3002<\/p>\n<p>DB\u306e\u4e2d\u8eab\u3082\u78ba\u8a8d\u3057\u3066\u307f\u305f\u3089\u3001\u672c\u5f53\u306b\u300c0000-07-24\u300d\u3068\u304b\u306b\u306a\u3063\u3066\u3044\u305f\u3002<br \/>\n\u3066\u3053\u3068\u3067\u8868\u793a\u4e0a\u306e\u554f\u984c\u3067\u3082\u306a\u3044\u3002<\/p>\n<p>DB\u683c\u7d0d\u6642\u306b\u30ec\u30f3\u30b8\u304c\u5916\u308c\u3066\u3044\u308b\u30680000-00-00\u3068\u304b\u306b\u306a\u308b\u306f\u305a\u306a\u306e\u3067DB\u306e\u305b\u3044\u3067\u306f\u306a\u3044\u3067\u3059\u306d\u3002\u7dba\u9e97\u306b\u5e74\u3060\u3051\u3060\u3057\u3002<\/p>\n<p>WordPress\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3082\u5909\u3048\u3066\u3044\u308b\u306e\u3067\u3001WordPress\u306e\u305b\u3044\u304b\u3068\u3082\u304a\u3082\u3063\u305f\u306e\u3067\u3059\u304c\u3001\u305d\u3093\u306a\u5831\u544a\u306f\u898b\u5f53\u305f\u3089\u305a\u3002<\/p>\n<p>\u767a\u751f\u65e5\u4ed8\u3092\u307f\u3066\u307f\u308b\u3068\u3001PHP 5.2.10\u306b\u4e0a\u3052\u305f\u65e5\u304b\u3089\u767a\u751f\u3057\u3066\u3044\u308b\u6a21\u69d8\u3002<\/p>\n<p>\u3067\u3001php.net\u3067\u8abf\u3079\u305f\u3089\u3053\u3093\u306a\u306e\u3042\u308a\u307e\u3057\u305f\u3002<\/p>\n<p><a href=\"http:\/\/bugs.php.net\/bug.php?id=49079\">http:\/\/bugs.php.net\/bug.php?id=49079<\/a><\/p>\n<p>\u306f\u306f\u3041\u3002<br \/>\next\/date\/php_date.c<br \/>\n\u3053\u3044\u3064\u304b\u3002<\/p>\n<p>\u3061\u306a\u307f\u306b\u5f53\u8a72\u7b87\u6240\u306f\u5404\u30d0\u30fc\u30b8\u30e7\u30f3\u3067\u306f\u3053\u306e\u69d8\u306b\u306a\u3063\u3066\u307e\u3057\u305f\u3002<\/p>\n<p>PHP 5.2.9)<br \/>\n<code>case 'Y': length = slprintf(buffer, 32, \"%s%04d\", t->y < 0 ? \"-\" : \"\", abs((int) t->y)); break;<\/code><\/p>\n<p>PHP 5.3.0)<br \/>\n<code>case 'Y': length = slprintf(buffer, 32, \"%s%04lld\", t->y < 0 ? \"-\" : \"\", llabs((timelib_sll) t->y)); break;<br \/>\n<\/code><\/p>\n<p>PHP 5.2.10<br \/>\n<code>case 'Y': length = slprintf(buffer, 32, \"%s%04ld\", t->y < 0 ? \"-\" : \"\", llabs(t->y)); break;<\/code><\/p>\n<p>\u306a\u305c\u306b\u3053\u3093\u306a\u3068\u3053\u304c\u6bce\u56de\u6bce\u56de\u5909\u308f\u308b\u306e\u304b\u3068\u30fb\u30fb\u30fb<\/p>\n<p>\u3068\u308a\u3042\u3048\u305a\u30015.2.10\u306e\u5f53\u8a72\u7b87\u6240\u3092\u66f8\u304d\u63db\u3048\u3066make\u3057\u76f4\u3057\u3066\u5b8c\u4e86\u301c\u3002<\/p>\n<p>\u305d\u306e\u5f8c\u306f\u4eca\u307e\u3067\u3069\u304a\u308a2009-07-24\u3068\u306a\u3063\u3066\u304a\u308a\u307e\u3059\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PHP\u30925.2.10\u306b\u3057\u3066\u304b\u3089\u6570\u65e5\u3002 5.3\u7cfb\u3067\u304a\u304d\u3066\u3044\u305fdeprecated\u3082\u51fa\u306a\u304f\u306a\u308a\u305d\u308c\u306a\u308a\u306b\u52d5\u3044\u3066\u3044\u308b\u3068\u601d\u3063\u3066\u3044\u307e\u3057\u305f\u3002 \u3057\u304b\u30fc\u3057\u3002\u3075\u3068Blog\u306b\u6295\u7a3f\u3057\u3066\u307f\u305f\u3068\u304d\u306b\u4e0d\u5177\u5408\u304c\u3002 \u300c\u6295\u7a3f\u3057\u305f\u3082\u306e\u304c\u8868\u793a\u3055\u308c\u306a\u3044\u300d \u3093\u30fc [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"spay_email":""},"categories":[3],"tags":[],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/posts\/563"}],"collection":[{"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=563"}],"version-history":[{"count":2,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/posts\/563\/revisions"}],"predecessor-version":[{"id":567,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=\/wp\/v2\/posts\/563\/revisions\/567"}],"wp:attachment":[{"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=563"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=563"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/popi.jp\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=563"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}