可以另外请教板大一个问题吗?就是我到官方找到资料.它的资料我改成3.01版可以用的方式后
可以指定用户名.性别以及级别.但是在发帖.精华与支持度的限制方面却没有效果.关键BBSCODE.php程式码如下
复制程式
function towhom($whom,$code){
global $SYSTEM,$admincheck,$attachper,$windid,$tpc_author,$tpc_buy,$fid,$tid,$pid,$i_table,$manager,$groupid,$code_num,$code_htm,$lang,$db_credits,$db_bbsurl,$gender,$ltitle,$userrvrc,$read,$winddb;
$whomarray=explode(',',$whom);
$whomarray1=explode(':',$whom);
if($whom=='男生'){$gendercheck=1;}elseif($whom=='女生'){$gendercheck=2;}else{$gendercheck=3;}
if($whomarray1[0]=='发帖'){$limit=$read[postnum];}elseif($whomarray1[0]=='精华'){$limit=$read[digests];}elseif($whomarray1[0]=='支持度'){$limit=$read[credit];}else{$limit=''}
if(($whomarray && @in_array($windid,$whomarray)) || $windid==$tpc_author || $windid==$manager || $gender==$gendercheck || $whom==$ltitle[$groupid] || $limit >= $whomarray1[1]){
$attachper=1;
return '<br><font color=blue>您是被作者指定的人,可以阅读:</font><br><div class=quote>'.$code.'</div>'
}else{$attachper=0;return '<div class=quote><font color=red>这个帖子指定由'.$whom.'阅读</font></div>'}
}
其中判别发帖.精华.支持度的变数是$whomarray1[0],$whomarray1[0]为文字,但是在判别的时候使用
$limit >= $whomarray1[1]者才能浏览.$limit是数值儿$whomarray1[1]是文字.这样要怎么作判断?
我的部份就是发帖.精华.支持度都没有作用.加密后还是看的到.请问这地方有办法改吗?
让有设定发帖.精华.支持度的加密可以有效果?