标签:
if ($intelligent_count > 1) {
//随机抽取推荐菜单
$intelligent = pdo_fetch("SELECT * FROM " . tablename($this->modulename . ‘_intelligent‘) . " WHERE name=:name AND weid=:weid AND storeid=:storeid AND id<>:id ORDER BY RAND() limit 1", array(‘:name‘ => $num, ‘:weid‘ => $weid, ‘:storeid‘ => $storeid, ‘:id‘ => $intelligentid));
} else {
$intelligent = pdo_fetch("SELECT * FROM " . tablename($this->modulename . ‘_intelligent‘) . " WHERE name=:name AND weid=:weid AND storeid=:storeid ORDER BY RAND() limit 1", array(‘:name‘ => $num, ‘:weid‘ => $weid, ‘:storeid‘ => $storeid));
}
标签:
原文地址:http://www.cnblogs.com/mxiao/p/4660963.html