Maison > php教程 > php手册 > ShopNC 产品分类搜索功能

ShopNC 产品分类搜索功能

WBOY
Libérer: 2016-06-06 19:39:42
original
1117 Les gens l'ont consulté

ShopNC2014版本默认下不支持以品牌作为关键字的搜索,这段代码可以让品牌作为关键字进行搜索。 演示:http://cnnewyork.com/shop/index.php?act=searchkeyword=阿迪达斯 ShopNC # file: \shop\control\search.phpif ($_GET['keyword'] != '') {// 品牌搜索$mo

ShopNC 2014 版本默认下不支持以品牌作为关键字的搜索,这段代码可以让品牌作为关键字进行搜索。

演示: http://cnnewyork.com/shop/index.php?act=search&op=index&keyword=阿迪达斯

ShopNC

# file: \shop\control\search.php

if ($_GET['keyword'] != '') {
					// 品牌搜索
					$model_brand = Model('brand');
					$condition_brand['brand_name'] = array('like', '%' . $_GET['keyword'] . '%');
					$row_brand = $model_brand->where($condition_brand)->find();
					if ($row_brand) {
						$condition['goods_name|goods_jingle|brand_id'] = array(array('like', '%' . $_GET['keyword'] . '%'), array('eq', intval($row_brand['brand_id'])), 'or');
					} else {
						$condition['goods_name|goods_jingle'] = array('like', '%' . $_GET['keyword'] . '%');
					}
                }
Copier après la connexion

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal