Я использую библиотеку Twitter Api php Abraham и пытаюсь перебирать твиты пользователей, но у меня возникли проблемы.
Я получаю все твиты пользователей из домашней хроники, используя это.
$content = $connection->get('statuses/home_timeline');
echo '<pre>',print_r($content),'</pre>';
Если я распечатаю массив … я получу это.
Array ( [0] => stdClass Object ( [created_at] => Tue Feb 10 15:31:07 +0000 2015 [id] => 565171109470171136 [id_str] => 565171109470171136 [text] => We are human beings not human doings – let’s start acting like it & take the time simply to be http://t.co/i4HAnApQxp http://t.co/3qSXA4D1qY [source] => Hootsuite [truncated] => [in_reply_to_status_id] => [in_reply_to_status_id_str] => [in_reply_to_user_id] => [in_reply_to_user_id_str] => [in_reply_to_screen_name] => [user] => stdClass Object ( [id] => 8161232 [id_str] => 8161232 [name] => Richard Branson [screen_name] => richardbranson [location] => [profile_location] => [description] => Tie-loathing adventurer, philanthropist & troublemaker, who believes in turning ideas into reality. Otherwise known as Dr Yes at @virgin! [url] => http://t.co/pWM2y98gTu [entities] => stdClass Object (
Как бы я получить имя от объекта класса std с помощью цикла forech?
Я пробовал это, но это не работает ??
foreach($content['user'] as $tweets) {
echo $tweets['name'] . '<br />';
}
Любая помощь будет хорошей 🙂
Хорошо, это, кажется, работает .. спасибо за вашу помощь
foreach($content as $tweets) {
echo $tweets->user->name . '<br />';
echo $tweets->text . '<br />';
}
что вам нужно сделать, это;
foreach($content as $tweets) {
foreach($tweets['user'] as $user) {
echo $user['name'] . '<br />';
}
}