コード例 #1
0
ファイル: user_service.php プロジェクト: vBulleteen/oxwall
 public function findUnverifiedStatusForUserList($idList)
 {
     $unverifiedUsers = $this->userDao->findUnverifyStatusForUserList($idList);
     $resultArray = array();
     foreach ($idList as $userId) {
         $resultArray[$userId] = in_array($userId, $unverifiedUsers) ? true : false;
     }
     return $resultArray;
 }