Exemple #1
0
 /**
  * @brief	[Session]获取用户SESSION信息
  * @param	array	$arrUids	用户ID数组
  * @return	用户不存在或交互失败返回false,否则返回关联数组
  * @note 
  * @author	fanmengzhe
  * @date	2011/02/17 14:20:35
  **/
 public static function uidGetInfoTime($arrUids)
 {
     $ins = Bd_Passport_Session::getInstance();
     $ret = $ins->uidGetInfoTime($arrUids);
     if ($ins->isError()) {
         self::$_errno = $ins->getCode();
         self::$_errmsg = $ins->getMessage();
         return false;
     } else {
         return $ret;
     }
 }