<?
echo "Begin Function=";
echo "<br>";
$text = "2lyve: this is: 8475978474957845 948594: jfhdhfkd: just the 2lyve: beginning:";
function getTrends($text)
{
$subject = $text;
$pattern ='/(\w+:)/Ui';
preg_match_all($pattern, $subject, $matches);
foreach($matches[1] as $value)
{
print $value."<br>";
}
}
getTrends($text);
?>
結果は次のようになります。
Begin Function=
2lyve:
is:
948594:
jfhdhfkd:
2lyve:
beginning:
各結果が返された回数をカウントしてランク付けするにはどうすればよいですか?また、これらの結果をSQLデータベースにインポートするにはどうすればよいですか?