コード例 #1
0
ファイル: TestController.php プロジェクト: caidongyun/CS
 public function actionUserInfo($uid)
 {
     $user = array_merge(UserUtils::getUserInfo($uid), UserUtils::getUserProfile($uid));
     echo WebUtils::jsonEncode($user);
 }
コード例 #2
0
ファイル: UserInfoAction.php プロジェクト: caidongyun/CS
 private function _getPersonalData($puid)
 {
     return UserUtils::getUserProfile($puid);
 }