打印数组中的所有值

时间:2016-03-06 23:48:31

标签: php arrays

我有以下代码打印出数组中的第一个值(Twitter帖子):

$connection = new TwitterOAuth($twitter_customer_key, $twitter_customer_secret, $twitter_access_token, $twitter_access_token_secret);

$my_tweets = $connection->get('statuses/user_timeline', array('screen_name' => 'xxx', 'count' => 10));

echo '<div class="tweets">';
if(isset($my_tweets->errors))
{           
echo 'Error :'. $my_tweets->errors[0]->code. ' - '. $my_tweets->errors[0]->message;
}else{
echo makeClickableLinks($my_tweets[0]    ->text);
}
echo '</div>';

但是,我想打印出数组中的所有值。我尝试使用此处所述的以下方法:http://php.net/manual/en/function.array-values.php

array_values($my_tweets)

但是返回以下内容:&#34;试图获取非对象的属性&#34;

我究竟做错了什么?

谢谢。

2 个答案:

答案 0 :(得分:1)

试试这个

    for($i = 0; $i<=count($my_tweets) -1; $i++){
        if(isset($my_tweets[$i]->errors)){                   
            echo 'Error :'. $my_tweets->errors[$i]->code. ' - '. $my_tweets->errors[$i]->message;
        } else{
            echo makeClickableLinks($my_tweets[$i]->text);
        }
    }

答案 1 :(得分:0)

print_r($my_tweets);

OR

foreach($my_tweets as $tweet){
    echo $tweet;
}

你也可以循环

{{1}}