{"id":1936,"date":"2014-09-13T14:33:55","date_gmt":"2014-09-13T05:33:55","guid":{"rendered":"http:\/\/taitan916.info\/blog\/?p=1936"},"modified":"2024-04-17T13:54:20","modified_gmt":"2024-04-17T04:54:20","slug":"post-1936","status":"publish","type":"post","link":"https:\/\/taitan916.info\/blog\/archives\/1936","title":{"rendered":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5"},"content":{"rendered":"<p>i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002<\/p>\n<p>&nbsp;<\/p>\n<h2>\u5b9f\u88c5\u3057\u305f\u3044\u6a5f\u80fd<\/h2>\n<ul>\n<li>\u8a73\u7d30\u30ec\u30dd\u30fc\u30c8\u306e\u65e5\u5225\u30c7\u30fc\u30bfCSV\u3092\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3067\u304d\u308b\u30d5\u30a9\u30fc\u30e0<\/li>\n<li>\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u305f\u30c7\u30fc\u30bf\u3092SQLite\u306b\u4fdd\u5b58<\/li>\n<li>\u65e2\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u65e5\u4ed8\u5206\u306f\u4e0a\u66f8\u304d\u4fdd\u5b58\u305b\u305a\u3001\u5dee\u5206\u3060\u3051\u4fdd\u5b58\u3059\u308b<\/li>\n<li>\u30c7\u30fc\u30bf\u30ea\u30bb\u30c3\u30c8\u6a5f\u80fd<\/li>\n<li>highcharts.js\u3092\u4f7f\u3063\u3066\u30b0\u30e9\u30d5\u8868\u793a<\/li>\n<\/ul>\n<p>&nbsp;<\/p>\n<h2>\u4e0b\u6e96\u5099<\/h2>\n<p>\u4ee5\u4e0b\u304b\u3089highcharts.js\u3092\u7528\u610f\u3057\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3057\u3068\u304f\u3002<\/p>\n<p><a href=\"http:\/\/www.highcharts.com\/\" target=\"_blank\" rel=\"noopener\">http:\/\/www.highcharts.com\/<\/a><\/p>\n<p>&nbsp;<\/p>\n<h2>\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9<\/h2>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">&lt;?\r\nif( !is_file('affiliate.sqlite') ){\r\n    $flg = 1;\r\n}\r\n\r\n$db = new SQLite3('affiliate.sqlite');\r\n\r\nif( $flg ){\r\n    $query = \"CREATE TABLE 'i-mobile' ( 'seq' INTEGER PRIMARY KEY, 'ymd' DATE , 'pv' INT, 'imp' INT, 'click' INT, 'ctr' FLOAT, 'cpm' FLOAT, 'income' INT );\";\r\n    $result = $db-&gt;query($query);\r\n}\r\n\r\n\r\n\/* \u30ea\u30bb\u30c3\u30c8\u6642 *\/\r\nif( $_GET['mode'] == 'reset' ){\r\n    $query = 'DELETE FROM `i-mobile`';\r\n\r\n    $result = $db-&gt;query($query);\r\n\r\n    if( !$result ){\r\n        $msg = 'reset error!';\r\n    } else {\r\n        header('Location:' . $_SERVER['PHP_SELF'] . '?mode=reseted');\r\n    }\r\n}\r\n\r\n\r\n\/* \u30d5\u30a1\u30a4\u30eb\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u6642 *\/\r\nif (is_uploaded_file($_FILES[\"upfile\"][\"tmp_name\"])) {\r\n\r\n    $msg = '';\r\n\r\n    do {\r\n\r\n        \/* \u30a2\u30c3\u30d7\u30ed\u30fc\u30c9 *\/\r\n        if( !move_uploaded_file($_FILES[\"upfile\"][\"tmp_name\"], $_FILES[\"upfile\"][\"name\"]) ){\r\n            $msg = 'file upload error!';\r\n            break;\r\n        }\r\n\r\n        chmod( $_FILES[\"upfile\"][\"name\"], 0644);\r\n        setlocale(LC_ALL, 'ja_JP.UTF-8');\r\n        $data = file_get_contents($_FILES[\"upfile\"][\"name\"]);\r\n        $data = mb_convert_encoding($data, 'UTF-8', 'sjis-win');\r\n        $temp = tmpfile();\r\n        $meta = stream_get_meta_data($temp);\r\n        fwrite($temp, $data);\r\n        rewind($temp);\r\n        $file = new SplFileObject($meta['uri']);\r\n        $file-&gt;setFlags(SplFileObject::READ_CSV);\r\n        $csv  = array();\r\n        foreach($file as $line) {\r\n            $csv[] = $line;\r\n        }\r\n        fclose($temp);\r\n        $file = null;\r\n        unlink($_FILES[\"upfile\"][\"name\"]);\r\n\r\n\r\n        \/* \u65e2\u306b\u5165\u529b\u3055\u308c\u3066\u3044\u308b\u65e5\u4ed8\u306e\u547c\u3073\u51fa\u3057 *\/\r\n        $query = '\r\n            SELECT ymd \r\n            FROM `i-mobile`\r\n        ';\r\n        $result = $db-&gt;query($query);\r\n\r\n        if( !$result ){\r\n            $msg = 'select error!';\r\n            break;\r\n        }\r\n\r\n        while ($row = $result-&gt;fetchArray()) {\r\n            $readData[$row['ymd']] = 1;\r\n        }\r\n\r\n\r\n        \/* \u66f8\u304d\u8fbc\u307f *\/\r\n        $insertData = '';\r\n        for( $i = 1; $i &lt; count($csv); $i++ ){\r\n\r\n            if( !$readData[$csv[$i][0]] ){ \/\/\u65e2\u306b\u767b\u9332\u3055\u308c\u3066\u3044\u308b\u5206\u306f\u4e0d\u8981\r\n\r\n                $query = '\r\n                    INSERT INTO `i-mobile` \r\n                        (ymd, pv, imp, click, ctr, cpm, income) \r\n                    VALUES \r\n                        (\"' . $csv[$i][0] . '\",\"' . $csv[$i][1] . '\",\"' . $csv[$i][2] . '\", \"' . $csv[$i][3] . '\",\"' . str_replace('%','',$csv[$i][4]) . '\", \"' . str_replace('\uffe5','',$csv[$i][5]) . '\", \"' . $csv[$i][6] . '\")\r\n                ';\r\n\r\n                $result = $db-&gt;query($query);\r\n\r\n                if( !$result ){\r\n                    $msg = 'insert error!';\r\n                    break;\r\n                }\r\n            }\r\n        }\r\n\r\n\r\n        if( $msg == '' ){\r\n            header('Location:' . $_SERVER['PHP_SELF'] . '?mode=uploaded');\r\n        }\r\n\r\n    } while (0);\r\n}\r\n\r\n\r\n\/* \u8aad\u307f\u8fbc\u307f *\/\r\n$query = '\r\n    SELECT * \r\n    FROM `i-mobile` \r\n    ORDER BY ymd ASC \r\n';\r\n$result = $db-&gt;query($query);\r\n\r\n$highchartsData['ymd'] = '';\r\n$highchartsData['pv'] = '';\r\n$highchartsData['imp'] = '';\r\n$highchartsData['click'] = '';\r\n$highchartsData['ctr'] = '';\r\n$highchartsData['cpm'] = '';\r\n$highchartsData['income'] = '';\r\n\r\nwhile ($row = $result-&gt;fetchArray()) {\r\n    $affiliateData[$row['id']]['ymd'] = $row['ymd'];\r\n    $affiliateData[$row['id']]['pv'] = $row['pv'];\r\n    $affiliateData[$row['id']]['imp'] = $row['imp'];\r\n    $affiliateData[$row['id']]['click'] = $row['click'];\r\n    $affiliateData[$row['id']]['ctr'] = $row['ctr'];\r\n    $affiliateData[$row['id']]['cpm'] = $row['cpm'];\r\n    $affiliateData[$row['id']]['income'] = $row['income'];\r\n\r\n    $highchartsData['ymd'] .= '\"'. $row['ymd'] . '\",';\r\n    $highchartsData['pv'] .= $row['pv'] . ',';\r\n    $highchartsData['imp'] .= $row['imp'] . ',';\r\n    $highchartsData['click'] .= $row['click'] . ',';\r\n    $highchartsData['ctr'] .= $row['ctr'] . ',';\r\n    $highchartsData['cpm'] .= $row['cpm'] . ',';\r\n    $highchartsData['income'] .= $row['income'] . ',';\r\n}\r\n?&gt;\r\n\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"ja\"&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=\"utf-8\"&gt;\r\n&lt;title&gt;i-mobile\u30b0\u30e9\u30d5\u5316&lt;\/title&gt;\r\n&lt;script type=\"text\/javascript\" src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.9.1\/jquery.min.js\"&gt;&lt;\/script&gt;\r\n&lt;link href=\"\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.3.2\/css\/bootstrap-combined.min.css\" rel=\"stylesheet\"&gt;\r\n&lt;script src=\"\/\/netdna.bootstrapcdn.com\/twitter-bootstrap\/2.3.2\/js\/bootstrap.min.js\"&gt;&lt;\/script&gt;\r\n&lt;script src=\".\/highcharts\/js\/highcharts.js\"&gt;&lt;\/script&gt;\r\n&lt;script&gt;\r\n$(function(){\r\n    $('#line').highcharts({\r\n        chart: {\r\n            type: 'line',\r\n            marginRight: 130,\r\n            marginBottom: 25\r\n        },\r\n        title: {\r\n            text: 'i-mobile',\r\n            x:-20 \/\/center\r\n        },\r\n        xAxis: {\r\n            categories: [&lt;? echo rtrim($highchartsData['ymd'], ',');?&gt;]\r\n        },\r\n        yAxis: {\r\n            title: {\r\n                align: 'middle',\r\n                rotation: -90\r\n\r\n            },\r\n            plotLines: [{\r\n                value: 0,\r\n                width: 1,\r\n                color: '#808080'\r\n            }]\r\n        },\r\n        legend: {\r\n            layout: 'vertical',\r\n            align: 'right',\r\n            verticalAlign: 'top',\r\n            x: -80,\r\n            y: 0,\r\n            borderWidth: 0\r\n        },\r\n        series: [{\r\n            name: '\u30da\u30fc\u30b8\u8868\u793a\u56de\u6570',\r\n            data: [&lt;? echo rtrim($highchartsData['pv'], ',');?&gt;]\r\n        }, {\r\n            name: '\u5e83\u544a\u8868\u793a\u56de\u6570',\r\n            data: [&lt;? echo rtrim($highchartsData['imp'], ',');?&gt;]\r\n        }, {\r\n            name: '\u30da\u30fc\u30b8CTR',\r\n            data: [&lt;? echo rtrim($highchartsData['ctr'], ',');?&gt;]\r\n        }, {\r\n            name: '\u30da\u30fc\u30b8CPM',\r\n            data: [&lt;? echo rtrim($highchartsData['cpm'], ',');?&gt;]\r\n        }, {\r\n            name: '\u53ce\u76ca\u91d1\u984d',\r\n            data: [&lt;? echo rtrim($highchartsData['income'], ',');?&gt;]\r\n        }]\r\n    });\r\n});\r\nfunction dataReset(){\r\n    if( confirm('\u30c7\u30fc\u30bf\u3092\u30ea\u30bb\u30c3\u30c8\u3057\u307e\u3059\u304b\uff1f') ){\r\n        location.href = '&lt;?=$_SERVER[\"PHP_SELF\"]?&gt;?mode=reset'\r\n    } else {\r\n        return false;\r\n    }\r\n}\r\n&lt;\/script&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n    &lt;? if( $msg ){ ?&gt;\r\n        &lt;div class=\"alert alert-error\"&gt;\r\n            &lt;?=$msg?&gt;\r\n        &lt;\/div&gt;\r\n    &lt;? } ?&gt;\r\n    &lt;? if( $_GET['mode'] == 'uploaded' || $_GET['mode'] == 'reseted' ){?&gt;\r\n        &lt;div class=\"alert alert-success\"&gt;\r\n            &lt;?=( $_GET['mode'] == 'uploaded' ) ? 'CSV\u30d5\u30a1\u30a4\u30eb\u306e\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002': '\u30c7\u30fc\u30bf\u306e\u30ea\u30bb\u30c3\u30c8\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002';?&gt;\r\n        &lt;\/div&gt;\r\n    &lt;? } ?&gt;\r\n    &lt;form enctype=\"multipart\/form-data\" method=\"post\" action=\"\"&gt;\r\n        &lt;input type=\"file\" name=\"upfile\"&gt;&lt;br \/&gt;\r\n        &lt;input type=\"submit\" value=\"Upload\" class=\"btn btn-info\"&gt;\r\n        &lt;input type=\"button\" value=\"Reset\" class=\"btn btn-danger\" onclick=\"return dataReset();\"&gt;\r\n    &lt;\/form&gt;\r\n    &lt;div id=\"line\"&gt;&lt;!--\u30b0\u30e9\u30d5\u9818\u57df--&gt;&lt;\/div&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>&nbsp;<\/p>\n<h2>\u305d\u306e\u4ed6<\/h2>\n<p>\u30bd\u30fc\u30b9\u3092\u305d\u306e\u307e\u307e\u4fdd\u5b58\u3057\u3066\u3001highchats.js\u306e\u30d1\u30b9\u3092\u66f8\u304d\u63db\u3048\u3066\u30a2\u30c3\u30d7\u30ed\u30fc\u30c9\u3059\u308b\u3060\u3051\u3067\u52d5\u304f\u306f\u305a\u3002<\/p>\n<p>\u6c17\u4ed8\u3044\u305f\u70b9\u3068\u3057\u3066SQLite\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u304c3.7.11\u4ee5\u524d\u306e\u3082\u306e\u3060\u3068\u3001MySQL\u3067\u3088\u304f\u4f7f\u3046\u4ee5\u4e0b\u306e\u5f62\u306e\u30d0\u30eb\u30af\u30a4\u30f3\u30b5\u30fc\u30c8\u304c\u3067\u304d\u306a\u3044\u6a21\u69d8\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">INSERT INTO table \r\n    (aaa, bbb) \r\nVALUES \r\n    (aaa,bbb), (aaa,bbb)<\/pre>\n<p>\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u5f62\u306a\u3089\u30d0\u30eb\u30af\u30a4\u30f3\u30b5\u30fc\u30c8\u53ef\u80fd\u307f\u305f\u3044\u3060\u3051\u3069\u30011\u56de\u306b\u633f\u5165\u3067\u304d\u308b\u306e\u306f500\u4ef6\u307e\u3067\u3002<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">INSERT INTO member\r\nSELECT 0 AS id, 'foo' AS name\r\nUNION ALL SELECT 1, 'bar'\r\nUNION ALL SELECT 2, 'baz'\r\nUNION ALL SELECT 3, 'qux';<\/pre>\n<p>500\u4ef6\u4ee5\u4e0a\u306a\u3089\u5206\u3051\u308b\u51e6\u7406\u3068\u304b\u5165\u308c\u308b\u306e\u304c\u9762\u5012\u304f\u3055\u304b\u3063\u305f\u306e\u30671\u56de\u305a\u3064\u633f\u5165\u306b\u3057\u305f\u3002<\/p>\n<p>\u307e\u305f\u3001\u30c7\u30fc\u30bf\u306e\u30ea\u30bb\u30c3\u30c8\u6642\u306bTRUNCATE\u3092\u4f7f\u304a\u3046\u3068\u3057\u305f\u3051\u3069SQLite\u306b\u306f\u7121\u3044\u3089\u3057\u3044\u3002DELETE FROM table\u3067\u5bfe\u5fdc\u3002<\/p>\n<p>BBS\u3068\u9055\u3063\u3066\u8907\u6570\u4eba\u6570\u304c\u4f7f\u3046\u3082\u306e\u3067\u3082\u306a\u3044\u3057\u3001\u65e5\u5225\u30c7\u30fc\u30bf\u306a\u3089\u30c7\u30fc\u30bf\u6570\u3082\u5c11\u306a\u3044\u3057\u3001\u3053\u3046\u3044\u3046\u30da\u30fc\u30b8\u306bSQLite\u304c\u5411\u3044\u3066\u3044\u305d\u3046\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5 ... <\/p>\n","protected":false},"author":1,"featured_media":2297,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2,3,43],"tags":[],"class_list":["post-1936","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php","category-jquery","category-sqlite"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"taitan\"\/>\n\t<meta name=\"keywords\" content=\"php,sqlite,\u30b0\u30e9\u30d5\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/taitan916.info\/blog\/archives\/1936\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta property=\"og:description\" content=\"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/taitan916.info\/blog\/archives\/1936\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png\" \/>\n\t\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2014-09-13T05:33:55+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-04-17T04:54:20+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\" \/>\n\t\t<meta name=\"twitter:description\" content=\"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#article\",\"name\":\"PHP\\u3068SQLite\\u3067i-mobile\\u306e\\u30c7\\u30fc\\u30bf\\u3092\\u30b0\\u30e9\\u30d5\\u5316\\u3059\\u308b\\u65b9\\u6cd5 | \\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"headline\":\"PHP\\u3068SQLite\\u3067i-mobile\\u306e\\u30c7\\u30fc\\u30bf\\u3092\\u30b0\\u30e9\\u30d5\\u5316\\u3059\\u308b\\u65b9\\u6cd5\",\"author\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/1422186794_sqliteicon.png\",\"width\":300,\"height\":300},\"datePublished\":\"2014-09-13T14:33:55+09:00\",\"dateModified\":\"2024-04-17T13:54:20+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#webpage\"},\"articleSection\":\"PHP, jQuery, SQLite\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog#listItem\",\"position\":1,\"name\":\"\\u30db\\u30fc\\u30e0\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"name\":\"JavaScript\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"name\":\"jQuery\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog#listItem\",\"name\":\"\\u30db\\u30fc\\u30e0\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"position\":3,\"name\":\"jQuery\",\"item\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#listItem\",\"name\":\"PHP\\u3068SQLite\\u3067i-mobile\\u306e\\u30c7\\u30fc\\u30bf\\u3092\\u30b0\\u30e9\\u30d5\\u5316\\u3059\\u308b\\u65b9\\u6cd5\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript#listItem\",\"name\":\"JavaScript\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#listItem\",\"position\":4,\"name\":\"PHP\\u3068SQLite\\u3067i-mobile\\u306e\\u30c7\\u30fc\\u30bf\\u3092\\u30b0\\u30e9\\u30d5\\u5316\\u3059\\u308b\\u65b9\\u6cd5\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/category\\\/javascript\\\/jquery#listItem\",\"name\":\"jQuery\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\",\"name\":\"taitan\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916\",\"name\":\"taitan\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#webpage\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936\",\"name\":\"PHP\\u3068SQLite\\u3067i-mobile\\u306e\\u30c7\\u30fc\\u30bf\\u3092\\u30b0\\u30e9\\u30d5\\u5316\\u3059\\u308b\\u65b9\\u6cd5 | \\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"description\":\"i-mobile\\u3067\\u30af\\u30ea\\u30c3\\u30af\\u4fdd\\u8a3c\\u306e\\u30a2\\u30d5\\u30a3\\u30ea\\u30a8\\u30a4\\u30c8\\u3060\\u3051\\u3069\\u6570\\u5024\\u304c\\u4e26\\u3093\\u3067\\u3044\\u308b\\u3060\\u3051\\u3067\\u30b0\\u30e9\\u30d5\\u3067\\u306f\\u78ba\\u8a8d\\u3067\\u304d\\u306a\\u3044\\u3002\\u306a\\u306e\\u3067SQLite\\u306e\\u7df4\\u7fd2\\u3082\\u304b\\u306d\\u3066\\u3001\\u30b0\\u30e9\\u30d5\\u5316\\u3092\\u884c\\u3063\\u305f\\u969b\\u306e\\u30e1\\u30e2\\u3002\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/author\\\/taitan916#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/02\\\/1422186794_sqliteicon.png\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936\\\/#mainImage\",\"width\":300,\"height\":300},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/archives\\\/1936#mainImage\"},\"datePublished\":\"2014-09-13T14:33:55+09:00\",\"dateModified\":\"2024-04-17T13:54:20+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/\",\"name\":\"\\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\",\"description\":\"Web\\u30a8\\u30f3\\u30b8\\u30cb\\u30a2 \\\/ \\u30d7\\u30ed\\u30b0\\u30e9\\u30de\\u304c\\u52c9\\u5f37\\u3057\\u305f\\u3053\\u3068\\u306e\\u30e1\\u30e2\\u3002\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/taitan916.info\\\/blog\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002","canonical_url":"https:\/\/taitan916.info\/blog\/archives\/1936","robots":"max-image-preview:large","keywords":"php,sqlite,\u30b0\u30e9\u30d5","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/taitan916.info\/blog\/archives\/1936#article","name":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","headline":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5","author":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"publisher":{"@id":"https:\/\/taitan916.info\/blog\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png","width":300,"height":300},"datePublished":"2014-09-13T14:33:55+09:00","dateModified":"2024-04-17T13:54:20+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/taitan916.info\/blog\/archives\/1936#webpage"},"isPartOf":{"@id":"https:\/\/taitan916.info\/blog\/archives\/1936#webpage"},"articleSection":"PHP, jQuery, SQLite"},{"@type":"BreadcrumbList","@id":"https:\/\/taitan916.info\/blog\/archives\/1936#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog#listItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/taitan916.info\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","name":"JavaScript"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","position":2,"name":"JavaScript","item":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","name":"jQuery"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog#listItem","name":"\u30db\u30fc\u30e0"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","position":3,"name":"jQuery","item":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery","nextItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/1936#listItem","name":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5"},"previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript#listItem","name":"JavaScript"}},{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/1936#listItem","position":4,"name":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5","previousItem":{"@type":"ListItem","@id":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery#listItem","name":"jQuery"}}]},{"@type":"Person","@id":"https:\/\/taitan916.info\/blog\/#person","name":"taitan"},{"@type":"Person","@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author","url":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916","name":"taitan"},{"@type":"WebPage","@id":"https:\/\/taitan916.info\/blog\/archives\/1936#webpage","url":"https:\/\/taitan916.info\/blog\/archives\/1936","name":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002","inLanguage":"ja","isPartOf":{"@id":"https:\/\/taitan916.info\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/taitan916.info\/blog\/archives\/1936#breadcrumblist"},"author":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"creator":{"@id":"https:\/\/taitan916.info\/blog\/archives\/author\/taitan916#author"},"image":{"@type":"ImageObject","url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png","@id":"https:\/\/taitan916.info\/blog\/archives\/1936\/#mainImage","width":300,"height":300},"primaryImageOfPage":{"@id":"https:\/\/taitan916.info\/blog\/archives\/1936#mainImage"},"datePublished":"2014-09-13T14:33:55+09:00","dateModified":"2024-04-17T13:54:20+09:00"},{"@type":"WebSite","@id":"https:\/\/taitan916.info\/blog\/#website","url":"https:\/\/taitan916.info\/blog\/","name":"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","description":"Web\u30a8\u30f3\u30b8\u30cb\u30a2 \/ \u30d7\u30ed\u30b0\u30e9\u30de\u304c\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2\u3002","inLanguage":"ja","publisher":{"@id":"https:\/\/taitan916.info\/blog\/#person"}}]},"og:locale":"ja_JP","og:site_name":"\u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","og:type":"article","og:title":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","og:description":"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002","og:url":"https:\/\/taitan916.info\/blog\/archives\/1936","og:image":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png","og:image:secure_url":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png","og:image:width":300,"og:image:height":300,"article:published_time":"2014-09-13T05:33:55+00:00","article:modified_time":"2024-04-17T04:54:20+00:00","twitter:card":"summary","twitter:title":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | \u52c9\u5f37\u3057\u305f\u3053\u3068\u306e\u30e1\u30e2","twitter:description":"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002","twitter:image":"https:\/\/taitan916.info\/blog\/wp-content\/uploads\/2015\/02\/1422186794_sqliteicon.png"},"aioseo_meta_data":{"post_id":"1936","title":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5 | #site_title","description":"i-mobile\u3067\u30af\u30ea\u30c3\u30af\u4fdd\u8a3c\u306e\u30a2\u30d5\u30a3\u30ea\u30a8\u30a4\u30c8\u3060\u3051\u3069\u6570\u5024\u304c\u4e26\u3093\u3067\u3044\u308b\u3060\u3051\u3067\u30b0\u30e9\u30d5\u3067\u306f\u78ba\u8a8d\u3067\u304d\u306a\u3044\u3002\u306a\u306e\u3067SQLite\u306e\u7df4\u7fd2\u3082\u304b\u306d\u3066\u3001\u30b0\u30e9\u30d5\u5316\u3092\u884c\u3063\u305f\u969b\u306e\u30e1\u30e2\u3002","keywords":[{"label":"php","value":"php"},{"label":"sqlite","value":"sqlite"},{"label":"\u30b0\u30e9\u30d5","value":"\u30b0\u30e9\u30d5"}],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-11 05:16:53","updated":"2025-12-18 06:31:22","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\" title=\"\u30db\u30fc\u30e0\">\u30db\u30fc\u30e0<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\" title=\"JavaScript\">JavaScript<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery\" title=\"jQuery\">jQuery<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"\u30db\u30fc\u30e0","link":"https:\/\/taitan916.info\/blog"},{"label":"JavaScript","link":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript"},{"label":"jQuery","link":"https:\/\/taitan916.info\/blog\/archives\/category\/javascript\/jquery"},{"label":"PHP\u3068SQLite\u3067i-mobile\u306e\u30c7\u30fc\u30bf\u3092\u30b0\u30e9\u30d5\u5316\u3059\u308b\u65b9\u6cd5","link":"https:\/\/taitan916.info\/blog\/archives\/1936"}],"_links":{"self":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/1936","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/comments?post=1936"}],"version-history":[{"count":2,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/1936\/revisions"}],"predecessor-version":[{"id":5854,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/posts\/1936\/revisions\/5854"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media\/2297"}],"wp:attachment":[{"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/media?parent=1936"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/categories?post=1936"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taitan916.info\/blog\/wp-json\/wp\/v2\/tags?post=1936"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}