我这里有前 3 条推文,但我一直无法将它们保存到我的数组中。他们需要是字符串,但我不断得到这个:
致命错误:无法在第 117 行的 XXX/classes/page.class.php 中使用 stdClass 类型的对象作为数组
$arrTweets = array();
foreach($tweets as $tweet) {
for ($i = 0; $i < 3; $i++) {
array_push($arrTweets, $tweet[$i] - > text);
}
}