我正在尝试从Twitter's mention method
的回复中检索一些信息 $mentions = $cb->statuses_mentionsTimeline();
foreach ($mentions as $mention) {
echo $mention->id_str .'<br />'; //Line #18
$urls = $mention->entities->urls;
foreach($urls as $url)
echo $url->expanded_url .' & ';
echo '<br />';
}
我按预期得到了输出,但结果后打印了这些错误:
注意:尝试获取非对象的属性 第18行的C:\ wamp \ www \ path_to_file.php
注意:尝试获取非对象的属性 第19行的C:\ wamp \ www \ path_to_file.php
注意:尝试获取非对象的属性 第19行的C:\ wamp \ www \ path_to_file.php
警告:为foreach()提供的参数无效 第20行的C:\ wamp \ www \ path_to_file.php