便宜vps推荐!

帝国CMS 6.0中会员信息调用功能的使用技巧和调用函数说明

时间:|浏览:| 评论 ()

帝国CMS 6.0新增了会员信息功能中会员信息调用功能的使用技巧有哪些?

 

以及在使用中调用到哪些重要的函数的说明有哪些?

前言:

先前版本调用会员资料要通过SQL查询调用,对于比较基础的用户略显麻烦,所以V6.0直接内置调用函数,调用更简单。

 

两种调用函数:

1、会员信息调用函数:sys_ShowMemberInfo(用户ID,查询字段)

用户ID:设置要调用的会员信息的用户ID,在信息内容页下调用可以设置为0,表示调用信息发布者的资料。

查询字段:默认为查询所有会员字段,此参数一般不用设置,如果为了效率更高可以指定相应的字段。如:“u.userid,ui.company”(u为主表,ui为副表)。 其它说明:函数返回结果为会员资料数组,显示用<?=$userr[字段名]?>

 

2、会员列表调用函数:sys_ListMemberInfo(调用条数,操作类型,会员组ID,用户ID,查询字段)

调用条数:调用前几条记录。

操作类型:0为按注册时间、1为按积分排行、2为按资金排行、3为按会员空间人气排行

会员组ID:指定要调用的会员组ID,不设置为不限,多个会员组用逗号隔开,如:'1,2'

用户ID:指定要调用的会员ID,不设置为不限,多个用户ID用逗号隔开,如:'25,27'

查询字段:默认为查询所有会员字段,此参数一般不用设置,如果为了效率更高可以指定相应的字段。如:“u.userid,ui.company”(u为主表,ui为副表)。 其它说明:函数返回结果为会员资料数组,显示用<?=$userr[字段名]?>

 

会员信息调用函数:sys_ShowMemberInfo

例子:在任意模板中加入:

<?php
$userr=sys_ShowMemberInfo(1,'');
?>
<table width="500" border="0" cellspacing="1" cellpadding="3" class="tableborder" align="center">
<tr bgcolor="#FFFFFF" class="header"> 
<td height="23" colspan="2"><font color="#333333">会员资料</font></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">会员头像</font></td>
<td><img src="<?=$userr[userpic]?$userr[userpic]:'/e/data/images/nouserpic.gif'?>" border="0"></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td width="23%" height="23"><font color="#333333">用户名</font></td>
<td width="77%"><a href="/e/space/?userid=<?=$userr[userid]?>"><?=$userr[username]?></a> 
<font color="#666666">(点击访问会员空间)</font></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">会员组</font></td>
<td><?=$userr[groupname]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">注册时间</font></td>
<td><?=$userr[registertime]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">公司名称</font></td>
<td><?=$userr[company]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">联系人</font></td>
<td><?=$userr[truename]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">联系电话</font></td>
<td><?=$userr[call]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">传真</font></td>
<td><?=$userr[fax]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">手机</font></td>
<td><?=$userr[phone]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">联系邮箱</font></td>
<td><?=$userr[email]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">QQ号码</font></td>
<td><?=$userr[oicq]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">MSN</font></td>
<td><?=$userr[msn]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">网站</font></td>
<td><?=$userr[homepage]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23"><font color="#333333">联系地址</font></td>
<td><?=$userr[address]?>   邮编:<?=$userr[zip]?></td>
</tr>
<tr bgcolor="#FFFFFF"> 
<td height="23" valign="top"><font color="#333333">公司介绍</font></td>
<td><?=nl2br($userr[saytext])?></td>
</tr>
</table>

会员列表调用函数:sys_ListMemberInfo
例子:在任意模板中加入:

<table width="600" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header"> 
<td width="345"><div align="center">公司名称</div></td>
<td width="119"><div align="center">注册帐号</div></td>
<td width="114"><div align="center">访问空间</div></td>
</tr>
<?php
$usersql=sys_ListMemberInfo(3,0,'3','','');
while($userr=$empire->fetch($usersql))
{
?>
<tr bgcolor="#FFFFFF"> 
<td> 
<div align="center"> 
<?=$userr[company]?>
</div></td>
<td> 
<div align="center"> 
<?=$userr[username]?>
</div></td>
<td> 
<div align="center"><a href="/e/space/?userid=<?=$userr[userid]?>">[点击访问]</a></div></td>
</tr>
<?php
}
?>
</table>
标签:帝国cms
声明:VPSNO仅为VPS服务器信息分享,任何IDC都有倒闭和跑路可能,本站无法作任何保障,请网友购买前自行斟酌,衡量评估风险,自负责任。数据勤备份是最佳选择。本文由VPSNO网站发布,转载请保留链接:《帝国CMS 6.0中会员信息调用功能的使用技巧和调用函数说明》站长联系QQ:22⑧2六8⑦肆8,邮箱为QQ邮箱。
网友评价
评论列表
共有 条评论

精选便宜VPS - VPS排行

  • No.1 最便宜的大厂云服务器
    UCloud云服务器

    UCloud云服务器

    UCloud(优刻得)是国内最大的中立公有云服务商,全球包含香港、台湾共25个数据中心,52元/年起

  • No.2 国内用户最多的云服务器
    阿里云服务器

    阿里云服务器

    阿里云是国内云服务器第一梯队头部商家,目前国内用户选择最多的云服务器商。

  • No.3 号称“良心云”的云服务器
    腾讯云服务器

    腾讯云服务器

    和阿里云规模相当的国内云服务器商,套路少,给100%CPU资源,拥有更好的性价比。

  • 热度飙升最快的国外VPS
    RackNerd

    RackNerd

    RackNerd是2019年成立的主机商,以提供便宜VPS、大带宽VPS闻名,近年来在国内用户中知名度颇高。

  • 最受国人欢迎的国外VPS
    bandwagonhost搬瓦工

    bandwagonhost搬瓦工

    搬瓦工VPS可能是中国用户数量最多的服务商,专为大陆用户定制了大量功能,线路有特别优化,快而稳定。

  • 实力雄厚的老牌国外VPS
    vultr

    vultr

    Vultr是成立于2014年的老牌IDC,全球16个机房,硬件配置极高,新用户注册赠送100美元余额。