如何獲取下列數組中包含的字段中的項目的頻率?標籤的計數頻率
//
...
...
//database stuff
while($row=mysql_fetch_array($result))
{
//Retrieve tags for this article
$tags=$row["art_tags"];
$tagarray=explode(",",$tags);
foreach($tagarray as $key => $value)
{
//這裏需要的解決方案
//如何搜索整個art_tags領域在數據庫中,並得到所有標籤
echo $value;
例如頻率。
//水稻×23倍
//豆類×12倍
}
像往常一樣,答案是NORMALIZE您的數據庫SCHEMA – symcbean 2011-05-16 13:58:06