2017-06-30 15 views
0

私はGoogle CSE(カスタム検索エンジン)からAPIを使用して独自のウェブサイトを作成しています.GoogleからのJSON結果を保存するため、 APIを自分のデータベースに保存して、1日あたりの100のコールを保存するようにしました。APIが呼び出されたときに、自分のデータベースから取得するだけです。データベースからのPHPデコード済みJSON文字列戻り値NULL

私はループ

<?php 
$search = mysql_query("SELECT * FROM jsondata WHERE id_jsondata = 1"); 
$jsondata = mysql_fetch_assoc($search); 
$json = json_decode($jsondata['jsondata'], true); 
foreach ($json as $data) { 
echo $data['link']; 
} 
?> 

に私のデータベースからJSONことを印刷したい。しかし、私がのvar_dump($のJSON)しようとすると、それはJSONが変換される

NULL

と、起こるdoesntの私のデータベースの文字列には、このように見えます。

[{"kind":"customsearch#result","title":"Tekken 7 - Full-Length SDCC 2014 Trailer - YouTube","htmlTitle":"<b>Tekken 7</b> - Full-Length SDCC 2014 <b>Trailer</b> - YouTube","link":"https://www.youtube.com/watch?v=yTm6BV8RT9A","displayLink":"www.youtube.com","snippet":"Jul 25, 2014 ... Check out the full-length Tekken 7 trailer straight from the Bandai Namco Games Fighting Game Panel at San Diego Comic-Con 2014! Followu00a0...","htmlSnippet":"Jul 25, 2014 <b>...</b> Check out the full-length <b>Tekken 7 trailer</b> straight from the Bandai Namco Games <br> Fighting Game Panel at San Diego Comic-Con 2014! Follow&nbsp;...","cacheId":"MmI6KIqGwI4J","formattedUrl":"https://www.youtube.com/watch?v=yTm6BV8RT9A","htmlFormattedUrl":"https://www.youtube.com/watch?v=yTm6BV8RT9A","pagemap":{"cse_thumbnail":[{"width":"300","height":"168","src":"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR-0L7ZLf24Vo2hFNsLE8awRPgmDlwznkynosWn71B-MX0u8-J4ZRuUgBnb"}],"imageobject":[{"url":"https://i.ytimg.com/vi/yTm6BV8RT9A/maxresdefault.jpg","width":"1280","height":"720"}],"person":[{"url":"http://www.youtube.com/user/NamcoBandaiGames"},{"url":"https://plus.google.com/117456562617165336918"}],"metatags":[{"title":"Tekken 7 - Full-Length SDCC 2014 Trailer","theme-color":"#e62117","og:site_name":"YouTube","og:url":"https://www.youtube.com/watch?v=yTm6BV8RT9A","og:title":"Tekken 7 - Full-Length SDCC 2014 Trailer","og:image":"https://i.ytimg.com/vi/yTm6BV8RT9A/maxresdefault.jpg","og:description":"Check out the full-length Tekken 7 trailer straight from the Bandai Namco Games Fighting Game Panel at San Diego Comic-Con 2014! Follow Katsuhiro Harada on T...","al:ios:app_store_id":"544007664","al:ios:app_name":"YouTube","al:ios:url":"vnd.youtube://www.youtube.com/watch?v=yTm6BV8RT9A&feature=applinks","al:android:url":"vnd.youtube://www.youtube.com/watch?v=yTm6BV8RT9A&feature=applinks","al:android:app_name":"YouTube","al:android:package":"com.google.android.youtube","al:web:url":"https://www.youtube.com/watch?v=yTm6BV8RT9A&feature=applinks","og:type":"video","og:video:url":"https://www.youtube.com/embed/yTm6BV8RT9A","og:video:secure_url":"https://www.youtube.com/embed/yTm6BV8RT9A","og:video:type":"text/html","og:video:width":"1280","og:video:height":"720","og:video:tag":"namco bandai games","fb:app_id":"87741124305","twitter:card":"player","twitter:site":"@youtube","twitter:url":"https://www.youtube.com/watch?v=yTm6BV8RT9A","twitter:title":"Tekken 7 - Full-Length SDCC 2014 Trailer","twitter:description":"Check out the full-length Tekken 7 trailer straight from the Bandai Namco Games Fighting Game Panel at San Diego Comic-Con 2014! Follow Katsuhiro Harada on T...","twitter:image":"https://i.ytimg.com/vi/yTm6BV8RT9A/maxresdefault.jpg","twitter:app:name:iphone":"YouTube","twitter:app:id:iphone":"544007664","twitter:app:name:ipad":"YouTube","twitter:app:id:ipad":"544007664","twitter:app:url:iphone":"vnd.youtube://www.youtube.com/watch?v=yTm6BV8RT9A&feature=applinks","twitter:app:url:ipad":"vnd.youtube://www.youtube.com/watch?v=yTm6BV8RT9A&feature=applinks"}],"videoobject":[{"url":"https://www.youtube.com/watch?v=yTm6BV8RT9A","name":"Tekken 7 - Full-Length SDCC 2014 Trailer","description":"Check out the full-length Tekken 7 trailer straight from the Bandai Namco Games Fighting Game Panel at San Diego Comic-Con 2014! Follow Katsuhiro Harada on T...","paid":"False","channelid":"UC_ntXHv-XdKCD7CPynVvnQw","videoid":"yTm6BV8RT9A","duration":"PT3M9S","unlisted":"False","thumbnailurl":"https://i.ytimg.com/vi/yTm6BV8RT9A/maxresdefault.jpg","embedurl":"https://www.youtube.com/embed/yTm6BV8RT9A","playertype":"HTML5 Flash","width":"1280","height":"720","isfamilyfriendly":"True","regionsallowed":"AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...","interactioncount":"1444296","datepublished":"2014-07-25","genre":"Gaming"}],"cse_image":[{"src":"https://i.ytimg.com/vi/yTm6BV8RT9A/maxresdefault.jpg"}]}}]

JSON文字列は、それが20件のデータが含まれているので、長いですので、私はここにちょうど1つのデータを含む上記http://codepad.org/Ib658BDD JSON文字列の例を動かします。

私は私のデータベースにJSONを挿入すると、私はすでに

$json = file_get_contents("https://www.googleapis.com/customsearch/v1?q=Tekken%207&cx=XXX&key=XXX"); 
$json = json_decode($json, true); 
$json = $json['items']; 
mysql_query("INSERT INTO jsondata(jsondata) VALUES('".json_encode(preg_replace('/[\x00-\x1F\x80-\xFF]/', '', str_replace("'", "&#39;", $json)))."')"); 

更新JSONをエンコードしている: それはJSONデータは今も 書かれていないので、私は「削除するstrugling午前のように見えるように見える(引用符をデータ内の記号)、例えば

"snippet":"This video was taken from a facebook page, named "Dream Team Gaming"." 
+0

あなたがここに与えたjsonは、$ jsondata ['jsondata']の中にあるのでしょうか、それとも$ jsondataですか? –

+0

その例の@AshwinKJoseph、id_jsondataとjsondataの列を持つjsondataというテーブルがあります –

+0

jsonのデータが間違っています。おそらく列の長さが非常に短いため完全なjson文字列を格納できません。 –

答えて

0

あなたのJSONデータが有効であり、不完全ではありません。あなたはすべて間違ってバックスラッシュ(\)をクリアし、データを完了する必要があります。JSON文字列がnull有効な、json_decodeコマンドが返すされていない場合。あなたは、有効であるあなたのjsonデータを食べましたhttp://json.parser.online.fr/

関連する問題