主頁(yè) > 網(wǎng)站建設(shè) > 建站知識(shí) > DEDE保存TAGS標(biāo)簽之InsertTags函數(shù)

DEDE保存TAGS標(biāo)簽之InsertTags函數(shù)

POST TIME:2017-11-12 23:40

/**
* 插入Tags
*
* @access public
* @param string $tag tag標(biāo)簽
* @param int $aid 文檔AID
* @return void
*/
if ( ! function_exists('InsertTags'))
{
function InsertTags($tag, $aid)
{
$tags = explode(',',$tag);
foreach($tags as $tag)
{
$tag = trim($tag);
if(isset($tag[20]) || $tag!=stripslashes($tag))
{
continue;
}
InsertOneTag($tag,$aid);
}
}
}
通過(guò)如下函數(shù)獲取保存在表里的TAGS標(biāo)簽:
/**
* 獲得某文檔的所有tag
*
* @param int $aid 文檔id
* @return string
*/
if ( ! function_exists('GetTags'))
{
function GetTags($aid)
{
global $dsql;
$tags = '';
$query = "SELECT tag FROM `dede_taglist` WHERE aid='$aid' ";
$dsql->Execute('tag',$query);
while($row = $dsql->GetArray('tag'))
{
$tags .= ($tags=='' ? $row['tag'] : ','.$row['tag']);
}
return $tags;
}
}
函數(shù)在/include/helpers/archive.helper.php中


上一篇:dede(織夢(mèng))不能下載遠(yuǎn)程圖片實(shí)現(xiàn)圖片本地化解決

下一篇:dedecms織夢(mèng)cms 5.7SP1文章列表頁(yè)怎么調(diào)用帶鏈接的

收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢

  • 400-1100-266