我试图通过SimpleXMLElement
对象的结果循环遍历给定用户的 Twitter 时间线。出于某种原因,下面的代码只显示了一个结果。
我在这里做错了什么?
如何在 xml/rest 结果的“描述”标签中搜索文本字符串。前任。我试图找到所有包含字符串“我喜欢编码”的推文。
<?php
// create a new cURL resource
$ch = curl_init();
curl_setopt_array(
$ch,
array(
CURLOPT_URL => "http://api.twitter.com/1/statuses/user_timeline.rss? screen_name=twitterusername",
CURLOPT_RETURNTRANSFER => true
)
);
$response = curl_exec($ch);
curl_close($ch);
$xml = new SimpleXMLElement($response);
foreach($xml as $x){
echo '<h2>' . $x->title . '</h2>';
echo '<a href="'.$x->link .'">Link</a>';
echo '<br><em>' .$x->description .'<em>';
}
?>