以下覚書。
[php]
\n";
echo "// 結果を表示(配列)\n";
var_dump($values);
echo "
\n";
// 被ブックマーク数を表示
echo "
\n"; echo "// 被ブックマーク数を表示\n"; echo "total_posts: {$values[0][total_posts]}\n"; echo "
\n";
// tagsを表示
echo "
\n"; echo "// tagsを表示\n"; foreach ($values[0][top_tags] as $key => $value ) { echo "[{$key}]"; // tag echo "({$value})\n"; // 件数 } echo "
\n";
?>
[/php]
実行結果
[text]
// 結果を表示(配列)
array(1) {
[0]=>
array(5) {
["hash"]=>
string(32) "ec16dada27c84a7c23fff9c27265355b"
["title"]=>
string(6) "Google"
["url"]=>
string(24) "http://www.google.co.jp/"
["total_posts"]=>
int(1254)
["top_tags"]=>
array(10) {
["google"]=>
int(407)
["search"]=>
int(340)
["検索"]=>
int(146)
["portal"]=>
int(99)
["searchengine"]=>
int(83)
["japan"]=>
int(81)
["web"]=>
int(52)
["ポータル"]=>
int(44)
["検索エンジン"]=>
int(24)
["internet"]=>
int(20)
}
}
}
// 被ブックマーク数を表示
total_posts: 1254
// tagsを表示
[google](407)
[search](340)
[検索](146)
[portal](99)
[searchengine](83)
[japan](81)
[web](52)
[ポータル](44)
[検索エンジン](24)
[internet](20)
[/text]