catalog move.php,catalog.php

/**

* WK 列出所有分类及品牌

* ============================================================================

* * 版权所有 2005-2012 QQ 80342014,并保留所有权利。

* ;

* ----------------------------------------------------------------------------

* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和

* 使用;不允许对程序代码以任何形式任何目的的再发布。

* ============================================================================

* $Author: liubo $

* $Id: catalog.php 17217 2011-01-19 06:29:08Z liubo $

*/

define('IN_ECS', true);

require(dirname(__FILE__) . '/includes/init.php');

if ((DEBUG_MODE & 2) != 2)

{

$smarty->caching = true;

}

/* 初始化分页信息 */

$page = isset($_REQUEST['page']) && intval($_REQUEST['page']) > 0 ? intval($_REQUEST['page']) : 1;

$size = isset($_CFG['page_size']) && intval($_CFG['page_size']) > 0 ? intval($_CFG['page_size']) : 10;

$catid = isset($_REQUEST['category']) && intval($_REQUEST['category']) > 0 ? intval($_REQUEST['category']) : 0;

$price_max = isset($_REQUEST['price_max']) && intval($_REQUEST['price_max']) > 0 ? intval($_REQUEST['price_max']) : 0;

$price_min = isset($_REQUEST['price_min']) && intval($_REQUEST['price_min']) > 0 ? intval($_REQUEST['price_min']) : 0;

/* 排序、显示方式以及类型 */

$default_display_type = $_CFG['show_order_type'] == '0' ? 'list' : ($_CFG['show_order_type'] == '1' ? 'grid' : 'text');

$default_sort_order_method = $_CFG['sort_order_method'] == '0' ? 'DESC' : 'ASC';

$default_sort_order_type = $_CFG['sort_order_type'] == '0' ? 'goods_id' : ($_CFG['sort_order_type'] == '1' ? 'shop_price' : 'last_update');

$sort = (isset($_REQUEST['sort']) && in_array(trim(strtolower($_REQUEST['sort'])), array('goods_id', 'shop_price', 'last_update', 'click_count','salenum'))) ? trim($_REQUEST['sort']) : $default_sort_order_type;

$order = (isset($_REQUEST['order']) && in_array(trim(strtoupper($_REQUEST['order'])), array('ASC', 'DESC'))) ? trim($_REQUEST['order']) : $default_sort_order_method;

$display = (isset($_REQUEST['display']) && in_array(trim(strtolower($_REQUEST['display'])), array('list', 'grid', 'text'))) ? trim($_REQUEST['display']) : (isset($_COOKIE['ECS']['display']) ? $_COOKIE['ECS']['display'] : $default_display_type);

$display = in_array($display, array('list', 'grid', 'text')) ? $display : 'text';

setcookie('ECS[display]', $display, gmtime() + 86400 * 7);

/* 页面的缓存ID */

$cache_id = sprintf('%X', crc32('catalog'.'-'.$catid . '-' . $display . '-' . $sort .'-' . $order .'-' . $page . '-' . $size . '-' . $_SESSION['user_rank'] . '-' .

$_CFG['lang'] .'-' . $price_max . '-' .$price_min ));

if (!$smarty->is_cached('catalog.dwt',$cache_id))

{

/* 取出所有分类 */

$cat_list = cat_list(0, 0, false);

foreach ($cat_list AS $key=>$val)

{

if ($val['is_show'] == 0)

{

unset($cat_list[$key]);

}

}

assign_template();

assign_dynamic('catalog');

$position = assign_ur_here(0, $_LANG['catalog']);

$smarty->assign('page_title', $position['title']); // 页面标题

$smarty->assign('ur_here', $position['ur_here']); // 当前位置

$smarty->assign('categories', get_categories_tree()); // 分类树

$smarty->assign('helps', get_shop_help()); // 网店帮助

$smarty->assign('cat_list', $cat_list); // 分类列表

$smarty->assign('brand_list', get_brands()); // 所以品牌赋值

$smarty->assign('promotion_info', get_promotion_info());

$smarty->assign('script_name', 'catalog');

/* 获取商品信息 */

$keywords = !empty($_REQUEST['keywords']) ? htmlspecialchars(trim($_REQUEST['keywords'])) : '';

//echo $keywords;

//$category = !empty($_REQUEST['category']) ? intval($_REQUEST['category']) : 0;

$children = ($catid > 0) ? get_children($catid) : '';

$count = get_cagtegory_goods_count($children, $price_min, $price_max, $keywords);

$max_page = ($count> 0) ? ceil($count / $size) : 1;

if ($page > $max_page)

{

$page = $max_page;

}

$goodslist = category_get_goods($children, $price_min, $price_max, $size, $page, $sort, $order, $keywords);

$smarty->assign('goods_list', $goodslist);

/* 分页 */

$pager['search'] = array(

'keywords' => stripslashes(urlencode($_REQUEST['keywords'])),

'category' => $catid,

'sort' => $sort,

'order' => $order,

'price_max' => $price_max,

'price_min' => $price_min

);

$pager['sort'] = $sort;

$pager = get_pager('catalog.php', $pager['search'], $count, $page, $size);

$smarty->assign('pager', $pager);

$smarty->assign('catid',$catid);

$smarty->assign('url_no_price', build_uri('catalog', array('cid'=>$catid, 'price_min'=>$price_min, 'price_max'=>$price_max), 'allcategory'));

$smarty->assign('furl_no_price', build_uri('catalog', array('cid'=>$catid), 'allcategory'));

}

$smarty->display('catalog.dwt');

/**

* 计算指定分类的商品数量

*

* @access public

* @param integer $cat_id

*

* @return void

*/

function calculate_goods_num($cat_list, $cat_id)

{

$goods_num = 0;

foreach ($cat_list AS $cat)

{

if ($cat['parent_id'] == $cat_id && !empty($cat['goods_num']))

{

$goods_num += $cat['goods_num'];

}

}

return $goods_num;

}

/**

* 获得分类下的商品

*

* @access public

* @param string $children

* @return array

*/

function category_get_goods($children, $min, $max, $size, $page, $sort, $order, $keywords='')

{

$where = "g.is_on_sale = 1 AND g.is_alone_sale = 1 AND ".

"g.is_delete = 0 ";

if(!empty($children)){

$where .= "AND ($children OR " . get_extension_goods($children) . ')';

}

if(!empty($keywords))

{

$keywords = preg_replace("/[ ]{1,}/", " ", trim($keywords));

$val = mysql_like_quote(trim($keywords));

$where .= " AND (g.goods_name LIKE '%$val%' OR g.goods_sn LIKE '%$val%' OR g.keywords LIKE '%$val%' $sc_dsad)";

}

/* fanny 判定是否是分销商,如果是则下降的产品不显示 start */

$sql .= ' AND g.goods_id '.db_create_notin(get_goods_down());

/* fanny 判定是否是分销商,如果是则下降的产品不显示 end */

/* 获得商品列表 */

$sql = 'SELECT g.goods_id, g.goods_name, g.goods_name_style, g.click_count, g.market_price, g.is_new, g.is_best, g.is_hot, g.shop_price AS org_price, ' .

"IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, g.promote_price, g.goods_type, " .

'g.promote_start_date, g.promote_end_date, g.goods_brief, g.goods_thumb , g.goods_img ' .

'FROM ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .

'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . ' AS mp ' .

"ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' " .

"WHERE $where $ext ORDER BY $sort $order";

$res = $GLOBALS['db']->selectLimit($sql, $size, ($page - 1) * $size);

$arr = array();

while ($row = $GLOBALS['db']->fetchRow($res))

{

if ($row['promote_price'] > 0)

{

$promote_price = bargain_price($row['promote_price'], $row['promote_start_date'], $row['promote_end_date']);

}

else

{

$promote_price = 0;

}

/* 处理商品水印图片 */

$watermark_img = '';

if ($promote_price != 0)

{

$watermark_img = "watermark_promote_small";

}

elseif ($row['is_new'] != 0)

{

$watermark_img = "watermark_new_small";

}

elseif ($row['is_best'] != 0)

{

$watermark_img = "watermark_best_small";

}

elseif ($row['is_hot'] != 0)

{

$watermark_img = 'watermark_hot_small';

}

if ($watermark_img != '')

{

$arr[$row['goods_id']]['watermark_img'] = $watermark_img;

}

$arr[$row['goods_id']]['goods_id'] = $row['goods_id'];

$arr[$row['goods_id']]['goods_name'] = $row['goods_name'];

$arr[$row['goods_id']]['name'] = $row['goods_name'];

$arr[$row['goods_id']]['goods_brief'] = $row['goods_brief'];

$arr[$row['goods_id']]['goods_style_name'] = add_style($row['goods_name'],$row['goods_name_style']);

$arr[$row['goods_id']]['market_price'] = price_format($row['market_price']);

$arr[$row['goods_id']]['shop_price'] = price_format($row['shop_price']);

$arr[$row['goods_id']]['type'] = $row['goods_type'];

$arr[$row['goods_id']]['promote_price'] = ($promote_price > 0) ? price_format($promote_price) : '';

$arr[$row['goods_id']]['goods_thumb'] = get_image_path($row['goods_id'], $row['goods_thumb'], true);

$arr[$row['goods_id']]['goods_img'] = get_image_path($row['goods_id'], $row['goods_img']);

$arr[$row['goods_id']]['url'] = build_uri('goods', array('gid'=>$row['goods_id']), $row['goods_name']);

}

return $arr;

}

/**

* 获得分类下的商品总数

*

* @access public

* @param string $cat_id

* @return integer

*/

function get_cagtegory_goods_count($children, $min = 0, $max = 0, $keywords='')

{

$where = "g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 ";

if(!empty($children)){

$where .= "AND ($children OR " . get_extension_goods($children) . ')';

}

if(!empty($keywords))

{

$keywords = preg_replace("/[ ]{1,}/", " ", trim($keywords));

$val = mysql_like_quote(trim($keywords));

$where .= " AND (g.goods_name LIKE '%$val%' OR g.goods_sn LIKE '%$val%' OR g.keywords LIKE '%$val%' $sc_dsad)";

}

/* fanny 判定是否是分销商,如果是则下降的产品不显示 start */

$sql .= ' AND g.goods_id '.db_create_notin(get_goods_down());

/* fanny 判定是否是分销商,如果是则下降的产品不显示 end */

$sql = "SELECT COUNT(*) FROM ".$GLOBALS['ecs']->table('goods').' AS g WHERE '.$where;

$total = $GLOBALS['db']->getOne($sql);

/* 返回商品总数 */

return $total;

}

?>

一键复制

编辑

Web IDE

原始数据

按行查看

历史

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/559961.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

php get 数据类型,PHP基础-数据类型-integet

integer 是集合 ℤ {…, -2, -1, 0, 1, 2, …} 中的某个数。语法整型值可以使用十进制,十六进制,八进制或二进制表示,前面可以加上可选的符号(- 或者 )。 可以用 负运算符 来表示一个负的integer。二进制表达的 integer 自 PHP 5.4.0 起可用…

php怎么seo,怎样学习seo

学习seo的方法:1、从搜索引擎原理开始,学习seo要先从搜索引擎原理开始;2、多思考;3、学习seo要多看高质量的seo教程;4、多和seo高手交流,经常听听大神的seo理论,集百家之所长,这样会…

php callable 参数,php 利用反射执行callable

现在有一个这样的函数我想利用反射,再用call_user_func执行,当然,我不是白痴和多此一举,主要是因为上面的$func是一个数组中的值,我现在要写一个解析数据函数,会遇到$func,写法如下:…

php ip 短时间 重复,php 限制同一个IP 一段时间不能评论多次,能给我详细解决的...

php 限制同一个IP 一段时间不能评论多次,能给我详细解决的mip版 关注:163 答案:3 悬赏:30解决时间 2021-01-25 15:27已解决2021-01-25 05:54php 限制同一个IP 一段时间不能评论多次,能给我详细解决的最佳答案2021-01-25 06:49在评论的操作中,都需要记录用户ip地址…

java 8 list,JAVA8 ListListInteger list中再装一个list转成一个list操作

我就废话不多说了&#xff0c;大家还是直接看代码吧~List collect IntStream.range(1, 10).boxed().collect(Collectors.toList());List collect1 IntStream.range(10, 20).boxed().collect(Collectors.toList());List> lists new ArrayList<>();lists.add(collect…

matlab中创建一个工程,从文件夹创建新工程

从文件夹创建新工程如果您有许多文件并希望将它们整理为一个工程(无论是否进行源代码管理)&#xff0c;请按照以下步骤创建一个新工程。使用 Simulink Start Page 中的 Folder to Project 模板可轻松将一个文件夹转换为工程。该模板会自动将您的文件添加到工程中&#xff0c;并…

局部遮荫光伏matlab,一种基于随机蛙跳全局搜索算法的局部阴影光伏阵列MPPT控制的制作方法...

本发明涉及一种局部阴影光伏阵列多峰MPPT控制方法&#xff0c;特别涉及一种基于随机蛙跳全局搜索算法的局部阴影光伏列阵多峰MPPT控制。背景技术&#xff1a;伴随太阳能发电的普及&#xff0c;光伏阵列的运行环境变的越来越复杂&#xff0c;局部遮荫导致光伏阵列输出特性曲线出…

打靶法matlab求边值问题代码,数学实验“微分方程组边值问题数值算法(打靶法,有限差分法)”实验报告(内含matlab程序)...

实验二十七实验报告一、实验名称&#xff1a;微分方程组边值问题数值算法(打靶法&#xff0c;有限差分法)。二、实验目的&#xff1a;进一步熟悉微分方程组边值问题数值算法(打靶法&#xff0c;有限差分法)。三、实验要求&#xff1a;运用Matlab/C/C/Java/Maple/Mathematica 等…

php symfony 安装,Symfony4中文文档: 安装和设置Symfony框架

安装和设置Symfony框架要创建新的Symfony应用程序, 首先确保使用的是PHP7.1 或更高版本并且已经安装Componser. 如果未安装, 请首先在系统上全局安装Componser. 如果你想使用虚拟机(VM), 请查看Homestead通过运行以下命令来创建新项目:$ composer create-project symfony/websi…

matlab变参传函,什么是传递函数的增益

公告&#xff1a; 为响应国家净网行动&#xff0c;部分内容已经删除&#xff0c;感谢读者理解。话题&#xff1a;什么是传递函数的增益?它是干什么的?怎么求?回答&#xff1a;我认为楼上的是错误的G(S)Y(s)/R(s) K(as1)(bs1)(ms1)/((ns1)(ps1).(qs1) )这样的K才是控制论里面…

matlab单元数组和结构,Matlab使用单元数组和结构数组

Matlab使用字符串数组、单元数组(cell array)和结构数组 (struct array)要在MALTAB中实现比较复杂的编程&#xff0c;就不能不用单元数组(cell array)和结构数组(structarray)。而且在Matlab中实现struct比C中更为方便。MATLAB字符串数组的创建与运算字符串数组主要用于可视化编…

matlab sar 斑马图,星载合成孔径雷达(SAR)斑马图仿真与研究

收稿日期:2002 - 04 - 22   第 20 卷  第 5 期 计  算  机  仿  真 2003 年 5 月    文章编号:1006 - 9348(2003)05 - 0123 - 04 星载合成孔径雷达( SAR)斑马图仿真与研究 朱力1 ,于立2 (1. 南京理工大学 ,江苏南京 210094 ;2. 南京电子技术研究所 ,江苏 南京 210013)…

matlab等高线二维加数字,matlab绘制二维等高线

第5章 MATLAB绘图 5.1 二维数据曲线图 5.2 其他二维图形 5.3 隐函数绘图 5.4 三维图形 5.5 图形修饰处理 5.6 图像处理与动画制作 5.1 二维数据曲线图 5......绘图 一.实验目的掌握 matlab 二维图形和三维图形的绘制方法,并会对图形进行处理,掌握符号函数(显 函数、隐函数和参数…

php订阅与推送,PHP用户关键词订阅推送文章功能

具体要求&#xff1a;PHP用户关键词订阅推送文章功能采用语言原生PHP5.6数据库mysql需求会员才能设置关键词推送比如用户设置了关键词比如‘电脑采购’和设置了匹配标题&#xff0c;如果有文章标题包含这个关键词&#xff0c;那就推送文章{文章id}比如用户设置了关键词比如‘电…

php的array_walk,PHP array_walk() 函数详解

定义array_walk - 对数组的每个元素应用自定义函数描述array_walk ( array &$array , callable $callback [, mixed $userdata NULL ] ) : bool回调函数的参数&#xff0c;第一个是元素值&#xff0c;第二个是元素键名&#xff0c;第三个是可选的 $userdata。如果只想改变…

Java定义变量x初始值为3,JAVA 第一章

第一章1.注释&#xff1a;一个好的开发习惯&#xff0c;应该是多编写注释&#xff0c;这样程序的可读性增强。单行注释// 单行注释 &#xff0c;只注释当前行多行注释/*多行注释多行注释*/javadoc 注释/**javadoc 注释javadoc 注释javadoc 注释*/注意&#xff1a;这种注释是比较…

matlab二元方程组,用matlab解一个二元方程组,会的进,得到解再回答

共回答了20个问题采纳率&#xff1a;75%clear,clcformat longf(x)[tan(4*3.14*20000*0.03)2*3.14*20000/x(1)*tan(x(1)*x(2));sqrt(4*3.14^2*20000^2*7840/2.1e11-log(2)*log(2)/x(2)^2)-x(1)];[s,v]fsolve(f,[24;0.1])Equation solved.fsolve completed because the vector of…

matlab生成组合字典序法,组合数学 排列生成算法 字典序

字典序排序生成数字使用1~MAXfunction dfs(n) {if (n MAX) {// console.log(a)ALL.push(Array.from(a))used.delete(a.pop())return}for (let i 1; i < MAX; i) {if (!used.has(i)) {a.push(i)used.add(i)dfs(n 1)}}used.delete(a.pop())}递增进位制由于n个排列有n&#…

血型算法php,血型排行榜!(真的很准)

一最容易动怒的人是&#xff1a;1.O 型&#xff1a;急性子&#xff0c;一点小事就能惹火他&#xff0c;性格中有好斗的一面&#xff0c;会以 " 我想发泄一下 " 为理由大发雷霆。2.B 型&#xff1a;看上去脾气很好&#xff0c;其实性情很直接&#xff0c;被愤怒冲昏头…

php div行内块元素,行内元素与块级元素的区别详细介绍

首先&#xff0c;CSS规范规定&#xff0c;每个元素都有display属性&#xff0c;确定该元素的类型&#xff0c;每个元素都有默认的display值&#xff0c;分别为块级(block)、行内(inline)。块级元素&#xff1a;(以下列举比较常用的块级元素&#xff0c;详情可在w3cschool查询)定…