主頁(yè) > 網(wǎng)站建設(shè) > 建站知識(shí) > dede織夢(mèng)獲取文章里第一張圖片

dede織夢(mèng)獲取文章里第一張圖片

POST TIME:2017-11-13 00:45


1、在include/helpers/archive.helper.php
/**
* 獲得某文檔的第一個(gè)圖片
*
* @param int $aid 文檔id
* @return string
*/
if( ! function_exists('GetImgs'))
{
function GetImgs($aid)
{
global $dsql;
$query = "select body FROM `dede_addonarticle` where aid='$aid'";
$dsql->Execute('body',$query);
$row = $dsql->GetArray('body');
preg_match('/<img(.*)>/i',$row['body'],$str);
$GImgs = $str[0];
//echo $GImgs;
return $GImgs;
}
}
模板里調(diào)用
[field:id function=GetImgs(@me)/]
2、include/extend.func.php
//取第一張圖地址
function firstimg($str_pic)
{
$str_sub=substr($str_pic,0,-7).".jpg";//刪除縮略圖字符串最后七位,然后再補(bǔ)上后綴.jpg
return $str_sub;
}
然后在模板里循環(huán)調(diào)用:
[field:litpic function=firstimg('@me')/]
如要直接調(diào)用用:
{dede:field name='litpic' function="firstimg(@me)"/}


收縮
  • 微信客服
  • 微信二維碼
  • 電話咨詢(xún)

  • 400-1100-266