これまでのところ順調に進んでおり、#jb などの特定のハッシュタグに関するすべての情報を表示し、それを正しく表示して、「created_at」などの特定の要素を含むさまざまな配列のロードを確認しました。
これを実行して特定の要素をターゲットにしようとしecho $decode[0]['created_at']."<br>";
ましたが、「Undefined offset: 0 in C:\xampp\htdocs\test\hashtag.php on line 6」というエラーが表示されました。これ、任意のガイダンスをいただければ幸いです
配列に関する特性は、ここで見ることができますhttp://search.twitter.com/search.json?q=%23jb
よろしく
<?php
$json = file_get_contents("http://search.twitter.com/search.json?q=%23jb", true); //getting the file content
$decode = json_decode($json, true); //getting the file content as array
echo "<pre>";
echo $decode[0]['created_at']."<br>"; //user location
echo "</pre>";
?>