Ben şu PHP kodu:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
$result = curl_exec($ch);
curl_close($ch);
$obj = json_decode($result);
foreach ($obj[0]->trends as $trend) echo utf8_decode($trend->name);
hangi URL # 1 (değişken $ URL içine) için çalışıyor:
http://api.twitter.com/1/trends/1.json?exclude=hashtags
but causes an error "Cannot use object of type stdClass as array" for URL #2: http://api.twitter.com/1/trends/weekly.json?exclude=hashtags
Ben bir süre arandı, ancak bunu düzeltmek ve hem URL'leri işlemek için bir kod anlamaya olamaz.
Herhangi bir yardım çok takdir.