예제 #1
0
파일: sns.php 프로젝트: momoim/momo-api
 public static function getwho($uid = NULL)
 {
     if ($uid == NULL) {
         $uid = sns::getuid();
         return Kohana::lang('global.me');
     }
     //当前用户的情况下
     // if ($uid == sns::getuid() && !preg_match('|user/[\d]+|', url::current())) return Kohana::lang('global.me');
     if ($uid == sns::getuid()) {
         return Kohana::lang('global.me');
     }
     $data = sns::getuser($uid);
     return $data['sex'] == '2' ? Kohana::lang('global.her') : Kohana::lang('global.his');
 }