织梦(DedeCMS)系统自定义字段图片调用标签:
一、实现方法1)创建自定义函数
打开 /include/extend.func.php 文件(注:这个文件就是系统预留的自定义函数接口文件,主要用于二次开发用的。如果你是老版本,默认没有这个文件,自己创建一个PHP文件即可),在最下面的?>上一行加入以下函数代码:
/**************** function GetOneImgUrl @@ 功能:读取自定义字段图片地址 *****************/
{dede:img text='' width='270' height='129'} /uploads/101017/1-10101H21F54P.gif {/dede:img} *****************/ 婚宴用了
function GetOneImgUrl($img,$ftype=1){ if($img <> ''){ $dtp = new DedeTagParse(); $dtp->LoadSource($img); if(is_array($dtp->CTags)){ foreach($dtp->CTags as $ctag){ if($ctag->GetName()=='img'){ $width = $ctag->GetAtt('width'); $height = $ctag->GetAtt('height'); $imgurl = trim($ctag->GetInnerText()); $img = ''; if($imgurl != '') { if($ftype==1){ $img .= $imgurl; } else{ $img .= "<img src='''.$imgurl.''' width='''.$width.''' height='''.$height.''' />"; } } } } } $dtp->Clear(); return $img; } } |