0

過去 200 件のツイートから多数のキーワードを抽出しようとしていますが、これまでのところ「substr_count」を使用しても、一度に 1 つの文字列しか検索できません。

キーワードの配列を定義し、「substr_count」を使用してそれらすべてをカウントする方法はありますか?

$recentTweets = $connection->get('https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=username');
GLOBAL $textDump;
for ($i=0; $i<count($recentTweets); $i++){
    $textDump .= $recentTweets[$i]->text . " ";
};
$keyWords = "the";
$number = substr_count(strtolower($textDump), strtolower($keyWords)); 
echo $number;
4

1 に答える 1

1
$textDump = "The quick brown fox jumps over the lazy dog";
$keyWords = array("the", "fox");
foreach ($keyWords as $keyWord) {
    $number[$keyWord] = substr_count(strtolower($textDump), strtolower($keyWord));
}
print_r($number); // Array ( [the] => 2 [fox] => 1 )
于 2013-01-29T04:34:42.973 に答える