联系官方销售客服
1835022288
028-61286886
大家好,我想问下,这个相关调取{related module=news tag=中国,美国 num=55}
是调取的标题包含中国,或者美国的文章。
有没有办法调取出标题包含中国并且包含美国的文章呢?
SQL: SELECT * FROM `dr_1_news` WHERE ((`dr_1_news`.`title` LIKE "%中国%" OR `dr_1_news`.`keywords` LIKE "%中国%") OR (`dr_1_news`.`title` LIKE "%美国%" OR `dr_1_news`.`keywords` LIKE "%美国%")) AND `dr_1_news`.`status` = 9 ORDER BY `dr_1_news`.`updatetime` DESC LIMIT 55开发模式:已关闭数据缓存:未设置分页功能:未开启
{php
$arr=[];
foreach ($tags as $name=>$u) {
$arr[]= " title like '%".$name."%' ";
}
$where=urlencode(implode(" and ", $arr));}
{module module=news where=$where num=55}