PHPCMS V9帮助中心
PHPSSO
PHPSSO函数参考

ps_get_member_info

说明

    获取用户信息

resource ps_get_member_info($mix [, $type=1])

参数

$mix 用户id/用户名/email

$type {1:用户id;2:用户名;3:email}

返回值

mix {-1:用户不存在;userinfo:用户信息}

Example

<?php

$status = $this->client->ps_get_member_info($userid);

$memberinfo = unserialize($status);

?>

回到顶部↑ 返回到PHPSSO