您现在的位置是:首页 > 教程 > dedecms教程dedecms教程

Dedecms添加自定义函数的方法

张广房2023-09-17 16:38:28dedecms教程已有人查阅

导读添加自定义函数文件:include/extend.func.php实例://通过会员ID查看会员名称的函数function GetMemberName($

添加自定义函数文件:include/extend.func.php
实例:
//通过会员ID查看会员名称的函数 function GetMemberName($str){ $dsql = new Dedesql(false); $row = $dsql->GetOne("SELECT uname FROM `ddmx_member` WHERE mid = '$str' "); return $row[uname]; }
前台模板调用[field:mid function="GetMemberName(@me)"/]
//通过ID号获取类别的链接 function GetTypeUrl($tid) { global $dsql; global $cfg_cmspath; $query ="select typedir from ‘#` where ; if($row=$dsql->getone($query)) { $temp=str_replace("{cmspath}",$cfg_cmspath,$row['typedir']).'/'; } return $temp; }
//通过ID号获取文章的链接 function zGetArticleUrl($id) { global $dsql; global $cfg_cmspath; $query ="select id,typedir,namerule from ‘#` where typeid from ‘#` where ; if($row = $dsql->getone($query)) { $arc=$row['namerule']; $type=str_replace("{cmspath}",$cfg_cmspath,$row['typedir']); $temp=str_replace("{typedir}",$type,$temp); $temp=str_replace("{aid}",$id,$temp); } return $temp; }

本文标签:

很赞哦! ()

留言与评论 (共有 条评论)
验证码:

本栏推荐

相关标签