本文整理汇总了PHP中UserRepository::get_user方法的典型用法代码示例。如果您正苦于以下问题:PHP UserRepository::get_user方法的具体用法?PHP UserRepository::get_user怎么用?PHP UserRepository::get_user使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类UserRepository
的用法示例。
在下文中一共展示了UserRepository::get_user方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: UserRepository
<?php
require_once '../../config/config.php';
include_once ROOT_PATH . 'models/user.class.php';
include_once ROOT_PATH . 'repository/userrepository.class.php';
if (isset($_POST['login'])) {
$user_repository = new UserRepository();
$user = $user_repository->get_user($_POST['username'], $_POST['password']);
if (is_null($user)) {
header('location:' . BASE_URL . 'invalid=true');
} else {
session_start();
$_SESSION['email'] = $user->get_email();
$_SESSION['password'] = $user->get_password();
$_SESSION['logged_in'] = 1;
header('location:index.php');
}
} else {
header('location:login.php');
}
示例2: UserRepository
<?php
require_once 'config/config.php';
include_once ROOT_PATH . 'models/user.class.php';
include_once ROOT_PATH . 'repository/userrepository.class.php';
if (isset($_POST['email']) && isset($_POST['password'])) {
$user_repository = new UserRepository();
$user = $user_repository->get_user($_POST['email'], $_POST['password']);
if (is_null($user)) {
header('location:login.php?invalid=true');
} else {
session_start();
$_SESSION['email'] = $user->get_email();
$_SESSION['password'] = $user->get_password();
$_SESSION['logged_in'] = 1;
header('location:index.php');
}
} else {
header('location:login.php');
}