版主标记的字段里面可以多放几个ID嘛
比如用"|"分开
$a='1|2|3";
$b=explode('|',$a);
for($i=0;$i<count($b);$$i++)
{
    if($b[$i]!=1)
    {
        die('不能管理本版块');
    }
}