加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
goods_script.php 5.93 KB
一键复制 编辑 原始数据 按行查看 历史
mhz 提交于 2021-10-05 00:53 . Signed-off-by: mhz mhz@yonxin.com
<?php
/**
* ABCBOOKS--- 生成書籍列表
* ============================================================================
* REN-EDIT
* REN-EDIT
* ----------------------------------------------------------------------------
* REN-EDIT
* REN-EDIT
* ============================================================================
* $Author: sunxiaodong $
* $Id: goods_script.php 15561 2009-01-13 10:42:12Z sunxiaodong $
*/
define('DEF_ABCBOOKS---t', true);
define('INIT_NO_USERS', true);
require(dirname(__FILE__) . '/includes/init.php');
if ((DEBUG_MODE & 2) != 2)
{
$smarty->caching = true;
}
$charset = empty($_GET['charset']) ? EC_CHARSET : $_GET['charset'];
if (strtolower($charset) == 'gb2312')
{
$charset = 'gbk';
}
header('content-type: application/x-javascript; charset=' . ($charset == 'UTF8' ? 'utf-8' : $charset));
/*------------------------------------------------------ */
//-- 判断是否存在缓存,如果存在則調用缓存,反之讀取相應内容
/*------------------------------------------------------ */
/* 缓存编號 */
$cache_id = sprintf('%X', crc32($_SERVER['QUERY_STRING']));
$tpl = ROOT_PATH . DATA_DIR . '/goods_script.html';
if (!$smarty->is_cached($tpl, $cache_id))
{
$time = gmtime();
/* 根據参數生成查詢語句 */
if (empty($_GET['type']))
{
$sitename = !empty($_GET['sitename']) ? $_GET['sitename'] : '';
$_from = (!empty($_GET['charset']) && $_GET['charset'] != 'UTF8')? urlencode(ecs_iconv('UTF-8', 'GBK', $sitename)) : urlencode(@$sitename);
$goods_url = $ecs->url() . 'affiche.php?ad_id=-1&amp;from=' . $_from . '&amp;goods_id=';
$sql = 'SELECT goods_id, goods_name, market_price, goods_thumb, RAND() AS rnd, ' .
"IF(is_promote = 1 AND '$time' >= promote_start_date AND ".
"'$time' <= promote_end_date, promote_price, shop_price) AS goods_price " .
'FROM ' . $ecs->table('goods') . ' AS g ' .
"WHERE is_delete = '0' AND is_on_sale = '1' AND is_alone_sale = '1' ";
if (!empty($_GET['cat_id']))
{
$sql .= ' AND ' . get_children(intval($_GET['cat_id']));
}
if (!empty($_GET['brand_id']))
{
$sql .= " AND brand_id = '" . intval($_GET['brand_id']) . "'";
}
if (!empty($_GET['intro_type']))
{
$_GET['intro_type'] = trim($_GET['intro_type']);
if ($_GET['intro_type'] == 'is_best' || $_GET['intro_type'] == 'is_new' || $_GET['intro_type'] == 'is_hot' || $_GET['intro_type'] == 'is_promote' || $_GET['intro_type'] == 'is_random')
{
if ($_GET['intro_type'] == 'is_random')
{
$sql .= ' ORDER BY rnd';
}
else
{
if ($_GET['intro_type'] == 'is_promote')
{
$sql .= " AND promote_start_date <= '$time' AND promote_end_date >= '$time'";
}
$sql .= " AND " . $_GET['intro_type'] . " = 1 ORDER BY add_time DESC";
}
}
}
}
elseif ($_GET['type'] == 'collection')
{
$uid = (int)$_GET['u'];
$goods_url = $ecs->url() . "goods.php?u=$uid&id=";
$sql = "SELECT g.goods_id, g.goods_name, g.market_price, g.goods_thumb, IF(g.is_promote = 1 AND '$time' >= g.promote_start_date AND ".
"'$time' <= g.promote_end_date, g.promote_price, g.shop_price) AS goods_price FROM " . $ecs->table('goods') . " g LEFT JOIN " . $ecs->table('collect_goods') . " c ON g.goods_id = c.goods_id " .
" WHERE c.user_id = '$uid'";
}
$sql .= " LIMIT " . (!empty($_GET['goods_num']) ? intval($_GET['goods_num']) : 10);
$res = $db->query($sql);
$goods_list = array();
while ($goods = $db->fetchRow($res))
{
// 轉換编碼
$goods['goods_price'] = price_format($goods['goods_price']);
if ($charset != EC_CHARSET)
{
if (EC_CHARSET == 'gbk')
{
$tmp_goods_name = htmlentities($goods['goods_name'], ENT_QUOTES, 'gb2312');
}
else
{
$tmp_goods_name = htmlentities($goods['goods_name'], ENT_QUOTES, EC_CHARSET);
}
$goods['goods_name'] = ecs_iconv(EC_CHARSET, $charset, $tmp_goods_name);
$goods['goods_price'] = ecs_iconv(EC_CHARSET, $charset, $goods['goods_price']);
}
$goods['goods_name'] = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($goods['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $goods['goods_name'];
$goods['goods_thumb'] = get_image_path($goods['goods_id'], $goods['goods_thumb'], true);
$goods_list[] = $goods;
}
/* 排列方式 */
$arrange = empty($_GET['arrange']) || !in_array($_GET['arrange'], array('h', 'v')) ? 'h' : $_GET['arrange'];
/* 排列顯示条目個數 */
$goods_num = !empty($_GET['goods_num']) ? intval($_GET['goods_num']) : 10;
$rows_num = !empty($_GET['rows_num']) ? intval($_GET['rows_num']) : '1';
if($arrange == 'h')
{
$goods_items = array_chunk($goods_list,$rows_num);
}
else
{
$columns_num = floor($goods_num / $rows_num);
$goods_items = array_chunk($goods_list,$columns_num);
}
$smarty->assign('goods_list', $goods_items);
/* 是否需要圖片 */
$need_image = empty($_GET['need_image']) || $_GET['need_image'] == 'true' ? 1 : 0;
$smarty->assign('need_image', $need_image);
/* 圖片大小 */
$smarty->assign('thumb_width', intval($_CFG['thumb_width']));
$smarty->assign('thumb_height', intval($_CFG['thumb_height']));
/* 網站根目錄 */
$smarty->assign('url', $ecs->url());
/* 書籍頁面连接 */
$smarty->assign('goods_url', $goods_url);
}
$output = $smarty->fetch($tpl, $cache_id);
$output = str_replace("\r", '', $output);
$output = str_replace("\n", '', $output);
echo "document.write('$output');";
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化