快消品貨源批發(fā)市場(chǎng)
快消品貨源分銷平臺(tái)
 
 
當(dāng)前位置: 貨源批發(fā)網(wǎng) » 網(wǎng)商學(xué)院 » 獨(dú)立商城 » DT(destoon) 標(biāo)簽解析原理

DT(destoon) 標(biāo)簽解析原理

放大字體  縮小字體 發(fā)布日期:2024-09-01 07:01:47  來(lái)源:電商聯(lián)盟  作者:樂(lè)發(fā)網(wǎng)  瀏覽次數(shù):3

DT(destoon) 標(biāo)簽解析原理
<?php
defined('IN_DESTOON') or exit('Access Denied');


function tag($parameter, $expires = 0) {
// $DT 網(wǎng)站配置
// $CFG 網(wǎng)站配置
// $MODULE 模塊配置
// $CATEGORY 當(dāng)前模塊分類信息
// $db 數(shù)據(jù)庫(kù)操作對(duì)象
// $DCAT ★★★
// $DT_TIME 當(dāng)前時(shí)間戳
global $DT, $CFG, $MODULE, $CATEGORY, $db, $DCAT, $DT_TIME;

// $CATBAK 當(dāng)前模塊的分類信息,作為備份使用
$CATBAK = $CATEGORY ? $CATEGORY : array();

if($expires > 0) {
// TAG(標(biāo)簽)自定義緩存$expires秒;
$tag_expires = $expires;
} else if($expires == -2) {
// SQL查詢緩存,數(shù)據(jù)庫(kù)緩存
$tag_expires = $CFG['db_expires'];
} else if($expires == -1) {
// TAG(標(biāo)簽)不緩存;
$tag_expires = 0;
} else {
// TAG(標(biāo)簽)默認(rèn)配置緩存;
$tag_expires = $CFG['tag_expires'];
}

// 定義TAG(標(biāo)簽)緩存的變量
$tag_cache = false;

// 定義SQL查詢緩存,數(shù)據(jù)庫(kù)緩存的變量
$db_cache = ($expires == -2 || defined('TOHTML')) ? 'CACHE' : '';

// 定義了tag緩存 && 不是SQL查詢緩存 && 參數(shù)字符串不含有&page=字符串(即列表分頁(yè)不緩存數(shù)據(jù))
if($tag_expires && $db_cache != 'CACHE' && strpos($parameter, '&page=') === false) {
$tag_cache = true;

// tag緩存的文件
$TCF = DT_CACHE.'/tag/'.md5($parameter).'.htm';

// 存在tag緩存文件 并且 緩存文件的生成時(shí)間在 TAG(標(biāo)簽)緩存時(shí)間的有效時(shí)間內(nèi),讀取緩存文件
if(is_file($TCF) && ($DT_TIME - filemtime($TCF) < $tag_expires)) {
echo substr(file_get($TCF), 17);
return;
}
}

// ★★★
$parameter = str_replace(array('&', '%'), array('', '##'), $parameter);

// 參數(shù)1轉(zhuǎn)為變量
parse_str($parameter, $par);

// 空數(shù)組,直接返回
if(!is_array($par)) return '';

$par = dstripslashes($par);

extract($par);

######################## 參數(shù) #######################
// 表前綴 無(wú)用的代碼,呵呵
isset($prefix) or $prefix = $db->pre;
// 模塊id
isset($moduleid) or $moduleid = 1;
// 不存在模塊,返回
if(!isset($MODULE[$moduleid])) return '';
// fields指查詢的字段,默認(rèn)為*,可以傳遞例如 fields=title,addtime
isset($fields) or $fields = '*';
// 分類id
isset($catid) or $catid = 0;
// 是否包含分類兒子
isset($child) or $child = 1;
// 地區(qū)id
isset($areaid) or $areaid = 0;
// 是否包含地區(qū)分類兒子
isset($areachild) or $areachild = 0;
// 定義緩存的目錄
isset($dir) or $dir = 'tag';
// tag默認(rèn)使用list模板
isset($template) or $template = 'list';
// 定義sql條件變量
isset($condition) or $condition = '1';
// 定義group條件變量
isset($group) or $group = '';
// 定義頁(yè)碼變量
isset($page) or $page = 1;
// 定義查詢記錄條數(shù)變量
isset($pagesize) or $pagesize = 10;
// ★★★
isset($update) or $update = 0;
// 定義排序變量
isset($order) or $order = '';
// 定義是否顯示分頁(yè)變量
isset($showpage) or $showpage = 0;
// 定義日期類型變量
isset($datetype) or $datetype = 0;
// 定義鏈接窗口變量
isset($target) or $target = '';
//
isset($class) or $class = '';
// 定義簡(jiǎn)介長(zhǎng)度變量
isset($length) or $length = 0;
// 定義簡(jiǎn)介變量
isset($introduce) or $introduce = 0;
// 定義調(diào)試變量
isset($debug) or $debug = 0;
// 定義列變量(模板中表格使用)
isset($cols) && $cols or $cols = 1;
// ★★★
isset($DCAT) or $DCAT = array();
if(isset($DCAT[$moduleid])) {
$CATEGORY = $DCAT[$moduleid];
} else {
$CATEGORY = $DCAT[$moduleid] = cache_read('category-'.$moduleid.'.php');
}


if($catid && $moduleid > 4) {
if(is_numeric($catid)) {
$condition .= ($child && $CATEGORY[$catid]['child']) ? " AND catid IN (".$CATEGORY[$catid]['arrchildid'].")" : " AND catid=$catid";
} else {
if($child) {
$_catids = explode(',', $catid);
$catids = '';
foreach($_catids as $_c) {
$catids .= ','.($CATEGORY[$_c]['child'] ? $CATEGORY[$_c]['arrchildid'] : $_c);
}
$catids = substr($catids, 1);
$condition .= " AND catid IN ($catids)";
} else {
$condition .= " AND catid IN ($catid)";
}
}
}

if($areaid) {
$AREA = cache_read('area.php');
if(is_numeric($areaid)) {
$condition .= ($areachild && $AREA[$areaid]['child']) ? " AND areaid IN (".$AREA[$areaid]['arrchildid'].")" : " AND areaid=$areaid";
} else {
if($areachild) {
$_areaids = explode(',', $areaid);
$areaids = '';
foreach($_areaids as $_a) {
$areaids .= ','.($AREA[$_a]['child'] ? $AREA[$_a]['arrchildid'] : $_a);
}
$areaids = substr($areaids, 1);
$condition .= " AND areaid IN ($areaids)";
} else {
$condition .= " AND areaid IN ($areaid)";
}
}
}

// 模塊的鏈接地址
$path = $MODULE[$moduleid]['linkurl'];
// 讀取表名
$table = isset($table) ? 1 : get_table($moduleid);
// 起始記錄
$offset = ($page-1)*$pagesize;
// 估摸著是在模板中使用,表格使用的
$percent = dround(100/$cols).'%';
// 定義記錄數(shù)量
$num = 0;
// sql 分組條件
$group = $group ? " GROUP BY $group" : '';
// sql 排序條件
$order = $order ? " ORDER BY $order" : '';
// stripslashes
$condition = stripslashes($condition);
// ★★★
$condition = str_replace('##', '%', $condition);

// ★★★
if($showpage) {
$num = $db->count($table, $condition.$group, $tag_expires ? $tag_expires : $CFG['db_expires']);
if($catid) {
if($page < 3 && $update) update_item($catid, $num);
$pages = listpages($moduleid, $catid, $num, $page, $pagesize, $CATEGORY);
} else {
$pages = pages($num, $page, $pagesize);
}
}

// $template為null,使用SQL查詢緩存,數(shù)據(jù)庫(kù)緩存
if($template == 'null') $db_cache = 'CACHE';

// sql
$query = "SELECT $fields FROM {$table} WHERe {$condition}{$group}{$order} LIMIT $offset,$pagesize";

// 調(diào)試
if($debug) echo $parameter.'<br/>'.$query.'<br/>';

//
$tags = array();

// rs
$result = $db->query($query, $db_cache, $tag_expires);

// rs 2 array
while($r = $db->fetch_array($result)) {
if(isset($r['title'])) {
$r['title'] = str_replace('"', '"', trim($r['title']));
$r['alt'] = $r['title'];
if($length) $r['title'] = dsubstr($r['title'], $length);
if(isset($r['style']) && $r['style']) $r['title'] = set_style($r['title'], $r['style']);
}
if(isset($r['introduce']) && $introduce) $r['introduce'] = dsubstr($r['introduce'], $introduce);
if(isset($r['linkurl']) && $r['linkurl'] && strpos($r['linkurl'], '://') === false) $r['linkurl'] = $path.$r['linkurl'];
$tags[] = $r;
}

// 不tag緩存,返回array
if($template == 'null') {
$CATEGORY = $CATBAK;
return $tags;
}

// 生成tag緩存
if($tag_cache) {
ob_start();
include template($template, $dir);
$contents = ob_get_contents();
ob_clean();
file_put($TCF, '<!--'.($DT_TIME + $tag_expires).'-->'.$contents);
$CATEGORY = $CATBAK;
echo $contents;
// 不tag緩存,返回array
} else {
include template($template, $dir);
$CATEGORY = $CATBAK;
}
}
?>

樂(lè)發(fā)網(wǎng)超市批發(fā)網(wǎng)提供超市貨源信息,超市采購(gòu)進(jìn)貨渠道。超市進(jìn)貨網(wǎng)提供成都食品批發(fā),日用百貨批發(fā)信息、微信淘寶網(wǎng)店超市采購(gòu)信息和超市加盟信息.打造國(guó)內(nèi)超市采購(gòu)商與批發(fā)市場(chǎng)供應(yīng)廠商搭建網(wǎng)上批發(fā)市場(chǎng)平臺(tái),是全國(guó)批發(fā)市場(chǎng)行業(yè)中電子商務(wù)權(quán)威性網(wǎng)站。

本文內(nèi)容整合網(wǎng)站:百度百科、知乎淘寶平臺(tái)規(guī)則

本文來(lái)源: DT(destoon) 標(biāo)簽解析原理

分享與收藏:  網(wǎng)商學(xué)院搜索  告訴好友  關(guān)閉窗口  打印本文 本文關(guān)鍵字:
 
更多..資源下載
獨(dú)立商城圖文
獨(dú)立商城網(wǎng)商學(xué)院推薦
獨(dú)立商城點(diǎn)擊排行
 
手機(jī)版 手機(jī)掃描訪問(wèn)
亚洲一级av,黑白配精品在线视频,欧美亚洲综合网站,高清在线无码不卡69 www.sucaiwu.net