人人商城判断当前登录用户是否为管理员

利用 $_W 获取当前登录用户信息。

global $_W;
$isfounder = $_W['isfounder'];
if( !$isfounder ){
	echo "当前用户不是管理员";
}