Jump to content
  • 0

посик тэгов по базе


crautcher
 Share

Question

<?
$all = array();
for ($i=1,$i < 9, $i++) // прогоняем все таблицы
{

$query="select question from ".$this->tables[$i]." where ";
foreach($this->words as $word)
{
$query = str_replace('#OR#','OR',$query)
$query.=" question like '%".addslashes($word)."%' #OR#";
}
$query = str_replace('#OR#','',$query); // мутим запрос
$query = $this -> sql -> query ($query);
//имеем массив или фолс
if ($query != false)
foreach($query[0] as $result)
{
$all[] = $result; //добавляем совпадения по эгам в общий массив и идем к нэкст таблице
}

}

в конце получаем массив вопросов $all , в которых есть тэги. Нужно найти наиболее вероятный вопрос (где засветилось больше всего тэгов) . хочу както проверку всунуть прям в цикл отбора ,или с запросом поколдовать можно чтото, что облегчило бы мне задачу?

Edited by crautcher
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

что за таблицы, дамп посмотреть можно? Может всё намного проще чем гонять FOR

все таблици с которыми тут работаю содержат только вопрос и список ответов ,

разделеные специальным разделителем. Каждая таблица - категория вопросов


id int(11) NOT NULL AUTO_INCREMENT,
answers text NOT NULL,
question varchar(80) NOT NULL DEFAULT '',

думайтеи меет смысл хранить в 1ой таблице и сделать поле - категория ?

Link to comment
Share on other sites

  • 0

ну я бы вообще сделал три таблицы

1. Категории

2. Вопросы + ответы

3. Тэги

хотя можно было бы и вопросы отделить. так на мой взгляд получилось бы универсальнее и динамичнее, да и проще искать что угодно

Link to comment
Share on other sites

  • 0

ну я бы вообще сделал три таблицы

1. Категории

2. Вопросы + ответы

3. Тэги

хотя можно было бы и вопросы отделить. так на мой взгляд получилось бы универсальнее и динамичнее, да и проще искать что угодно

все гениальное просто

Link to comment
Share on other sites

  • 0

теперь архетекрута базы у меня

questions (
questionId int(11) NOT NULL AUTO_INCREMENT,
text text NOT NULL,
categoty varchar(30) NOT NULL DEFAULT '',
KEY questionId (questionId),
)
answers (
id int(11) NOT NULL AUTO_INCREMENT,
text text NOT NULL,
questionId int(11) NOT NULL,
KEY questionId (questionId),
)

и код :

<?
$all = array();

$query="select text from questions where ";
foreach($this->words as $word)
{
$query = str_replace('#OR#','OR',$query)
$query.=" question like '%".addslashes($word)."%' #OR#";
}
$query = str_replace('#OR#','',$query);
$query = $this -> sql -> query ($query);
if ($query != false)
foreach($query[0] as $result)
{
$all['question'][] = $result;
$all['tags_count'][] = $this->GetTagsCount($result);
}

и функция поможет упорядочить массив $all по количеству совпадений

function GetTagsCount($txt)
{
$count=0;
foreach ($this->words as $word)
{
if (strpos($txt,$word) != false)
$count++;
}
return $count;
}

Edited by crautcher
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy