過去 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;