0

我想让我的数据库文章重新分类。我没有好主意,把文章分类更好。我建立了一个参考表,把每个类别的每一个可能的词都放在里面。然后我从主表中查询,将articles每篇文章的内容探索成单词,放入参考表中,以匹配文章是否属于哪个类别?然后做一个更新。我想控制每个类别的最大文章数是 5。我写了一些这样的代码。

<?php
header('Content-type:text/html; charset=utf-8');
$db = mysql_connect("localhost","root","root") or die("can not connect Mysql Server");
mysql_select_db("mydb",$db);
$result = mysql_query("SELECT content,id,directory,date FROM articles WHERE Order By date DESC");//get all the articles from database
while ($row = mysql_fetch_array($result))
{
$id = $row['id'];
$content = $row['content'];
$words = preg_split("/\s+/",$content); 
$uniqueWords = array_keys(array_flip($words)); 
$parts = '';
foreach($uniqueWords as $word){     
$parts[] = " tag1 = '$word' OR tag2 = '$word' OR tag3 = '$word' OR tag4 = '$word' OR tag5 = '$word' ";   
$where = implode(" OR ", $parts);
mysql_select_db("mydb",$db);
mysql_query("SET NAMES utf8");
$query = mysql_query("SELECT * FROM tags1 WHERE ($where) AND category='art' "); // put every word from each article into `tag1` database whether the article is match category='art'
$citn = '';
            while ($row = mysql_fetch_array($query)) {
        $citn = $row['category'];
        } 
    $catnew = $citn;
mysql_query("UPDATE articles SET directory = '".$catnew."' WHERE id = '".$id."' AND directory ='0'  Order By date DESC LIMIT 5"); // update first 5 articles which is match category='art' 
$query = mysql_query("SELECT * FROM tags1 WHERE ($where) AND category='fashion' "); // put every word from each article into `tag1` database whether the article is match category='fashion'
$citn = '';
            while ($row = mysql_fetch_array($query)) {
        $citn .= $row['category']."|" ;
        } 
    $catnew = explode("|",$citn);
mysql_query("UPDATE articles SET directory = '".$catnew."' WHERE id = '".$id."' AND directory ='0'  Order By date DESC LIMIT 5"); // update first 5 articles which is match category='fashion'
$query = mysql_query("SELECT * FROM tags1 WHERE ($where) AND category='travel' ");// put every word from each article into `tag1` database whether the article is match category='travel'
... // there have 20 `category`, each is the same judge method.
}
}
mysql_close($db);
?>

但是速度非常非常慢,我在我的articles db表中测试了60篇文章,在tag1表中测试了20个类别。但是在更新期间它会回显 Fatal error: Maximum execution time of 60 seconds exceeded in...

如何进行有效的更新或者有更好的方法来完成这项工作?谢谢。

这是我的文章表

id | title | link | content | date | directory
1  | ...   | ...  | ...     | ...  |  0 // all directory value are `0` 
2  | ...   | ...  | ...     | ...  |  0 
3  | ...   | ...  | ...     | ...  |  0
... // more 60 articles

这是我的 tag1 表

category | tag1    | tag2   | tag3       | tag4    |  tag5   
tourism  | tourism | travel | tour       | journey |  trip
fashion  | style   | vogue  | fashion    | mode    |  Popular
art      | paint   |
... // more 20 categories
4

1 回答 1

0

原谅我,我觉得我一定读错了你的代码,因为当我读到它时,有很多关于你的代码的问题让我感到困惑。

首先,您有许多领域,例如:

  while ($row = mysql_fetch_array($query)) {
$citn = $row['category'];
} 

其中,在运行时当然只会显示 $citn 中的最后一个条目,但是在 where 子句中,您指定类别必须是“艺术”,例如,因此,查询的重点是什么,您已经知道答案成为“艺术”?除非这是简化的代码。

所以,我想知道你认为你的代码做了什么,据我所知,'art' 的第一个将返回 $citn 作为 'art' 第二个将返回 "fashion|fashion.." 中的每一行它找到的 tags1 表,如果有超过 1 种方式,最后一次更新可能会失败,因为将它分解成一个数组我不确定 SQL 将如何处理转储在那里的 PHP 数组。您没有显示任何代码的最后一个查询,所以..我有点失落。

我得到的印象是您想要分解给定文章的文本,然后查看它是否有 5 个或更多标签出现在类别中。如果是这样,我看不到这段代码这样做。

正如我所说,我可能以某种方式误读了它。

于 2011-04-03T13:10:49.223 回答