当前位置: 首页>>代码示例>>PHP>>正文


PHP UserRepository::LoadAll方法代码示例

本文整理汇总了PHP中UserRepository::LoadAll方法的典型用法代码示例。如果您正苦于以下问题:PHP UserRepository::LoadAll方法的具体用法?PHP UserRepository::LoadAll怎么用?PHP UserRepository::LoadAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UserRepository的用法示例。


在下文中一共展示了UserRepository::LoadAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Map

 public function Map()
 {
     //Gibt alle öffentlichen Todoentries zurück
     $this->Route('GET', '/todoentry', function () {
         $todoEntryRepository = new TodoEntryRepository();
         $entries = $todoEntryRepository->LoadWhere("Public = 1", [["CreatorUserId" => "user", "ProofPhotoId" => "media"]]);
         $counter = 0;
         while ($counter < count($entries)) {
             unset($entries[$counter]["Public"]);
             unset($entries[$counter]["user"]["Email"]);
             $counter++;
         }
         $this->Send($entries);
     });
     //Gibt einen Zufälligen EntryofTheDay zurück
     $this->Route('GET', '/entryoftheday', function () {
         $entryOfTheDayRepository = new EntryOfTheDayRepository();
         $entries = $entryOfTheDayRepository->LoadOrderBy("RAND() LIMIT 1", [["UserId" => "user"]]);
         $entry = $entries[0];
         $this->Send(["Message" => $entry["Message"], "user" => ["Id" => $entry["user"]["Id"], "Username" => $entry["user"]["Username"], "Profilepicture" => $entry["user"]["Profilepicture"]]]);
     });
     //Zeigt die Anzahl User
     $this->Route('GET', '/user-count', function () {
         $userRepository = new UserRepository();
         $number = count($userRepository->LoadAll());
         $this->Send(array("amount" => $number));
     });
     //Lädt alle User
     $this->Route('GET', '/users', function () {
         $userRepository = new UserRepository();
         $users = $userRepository->LoadAll();
         $counter = 0;
         while ($counter < count($users)) {
             unset($users[$counter]["Password"]);
             unset($users[$counter]["Email"]);
             $counter++;
         }
         $this->Send($users);
     });
 }
开发者ID:BrunnerLivio,项目名称:Bierbendiger,代码行数:40,代码来源:PublicController.php


注:本文中的UserRepository::LoadAll方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。