更新2 - 我设法通过使用子查询来做到这一点,而不是每个数字都有一个$config var,我在我的articles_category 表中添加了一行以获得1或0,如果它有1,则像这样包含它:
$db->sqlquery("SELECT a . * , c.`category_name`
FROM `articles` a
LEFT JOIN `articles_categorys` c ON c.`category_id` = a.`category_id`
WHERE a.`active` =1
AND a.`category_id`
IN (
(
SELECT `category_id`
FROM `articles_categorys`
WHERE `show_in_rss` =1
)
)
ORDER BY a.`date` DESC
LIMIT ?", array($limit));
UPDATE1 - 我有一个部分解决方案,我需要第二位的帮助(我什至不知道这是否正确,但它让我发疯)。
如果我这样做;
$category_array = explode(',', $config['article_rss_categorys']);
$in_sql = '';
$counter = 0;
// count how many there are
foreach($category_array as $cat)
{
if ($counter == 0)
{
$in_sql .= '?';
}
else
{
$in_sql .= ',?';
}
$counter++;
}
我可以把“$in_sql”放在IN()里面给我个人吗?它有效。现在我需要找到一种方法将 $config['article_rss_categorys'] 内部的每个数字都放入查询的第二部分?
原来的;
$db 是我的数据库类/连接(所有函数都在这个类中)。
好的,这是我的查询:
$db->sqlquery("
SELECT a.*, c.`category_name`
FROM `articles` a LEFT JOIN `articles_categorys` c
ON c.`category_id` = a.`category_id`
WHERE a.`active` = 1
AND a.`category_id` IN (?)
ORDER BY a.`date`
DESC LIMIT ?", array($config['article_rss_categorys'], $limit)
);
我检查了$config['article_rss_categorys']
is set and its 0,1,2,4,6,7
, also $limit
is set and it's 15
。
这是我的查询代码(在 $db 调用的 mysql 类中);
try
{
$this->STH = $this->database->prepare($sql);
foreach($objects as $k=>$p)
{
// +1 is needed as arrays start at 0 where as ? placeholders start at 1 in PDO
if(is_numeric($p))
{
$this->STH->bindValue($k+1, (int)$p, PDO::PARAM_INT);
}
else
{
$this->STH->bindValue($k+1, $p, PDO::PARAM_STR);
}
}
return $this->STH->execute();
$this->counter++;
}
catch (PDOException $e)
{
$core->message($e->getMessage());
}
我用正确的东西替换了 phpmyadmin 中的查询,?
它确实有效,所以数据库很好。
然后我尝试像这样获取并输出结果;
while ($line = $db->fetch())
{
// make date human readable
$date = $core->format_date($line['date']);
$output .= "
<item>
<title>{$line['category_name']} > {$line['title']}</title>
<link>http://www.prxa.info/index.php?module=articles_comments&aid={$line['article_id']}</link>
<pubDate>{$date}</pubDate>
<guid>http://www.prxa.info/index.php?module=articles_comments&aid={$line['article_id']}</guid>
</item>";
}
这是我的获取代码(在 $db 调用的 mysql 类中);
public function fetch()
{
$this->STH->setFetchMode(PDO::FETCH_ASSOC);
return $this->STH->fetch();
}
它只返回一行,最后一行。它应该循环遍历它们,最多可达 15 个。
我不明白为什么它只得到一个?