织梦CMS/Dedecms添加自定义函数

  添加自定义函数文件: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;

  }

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦CMS/Dedecms添加自定义函数

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情