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


PHP UserClient::setUserObject方法代码示例

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


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

示例1: authenticate

 /**
  * Checks if credentials typed by the user are ok.
  * If credentials are incorrect or something is missing it
  * sets proper output message
  * @param $u, which is username
  * @param $p, which is password
  * @param $userClient
  * @return true is credentials are correct and false if otherwise
  */
 private function authenticate($u, $p, UserClient $userClient)
 {
     if (empty($u)) {
         // Check is username field is empty
         return false;
     } elseif (empty($p)) {
         // Check is password field is empty
         return false;
     }
     $amount = count($this->users);
     // Loop through all users and check if there exists a user with specified username and password
     for ($i = 0; $i < $amount; $i++) {
         $username = $this->users[$i]->getUsername();
         // Get username from array
         $hashedPassword = $this->users[$i]->getPassword();
         // Get hashed password from user array
         if ($username == $u && password_verify($p, $hashedPassword)) {
             // Check if credentials are correct
             $userClient->setUserObject($this->users[$i]);
             $_SESSION[self::$sessionUserLocation] = $userClient;
             return true;
         }
     }
     return false;
 }
开发者ID:Janste,项目名称:PHP_MVC_Simple_Social_Network,代码行数:34,代码来源:Authentication.php


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