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


PHP MemberModel::get_authinfo方法代码示例

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


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

示例1: do_authenticate

 public function do_authenticate()
 {
     // データベースを操作します。
     $MemberModel = new MemberModel();
     $userdata = $MemberModel->get_authinfo($_POST['username']);
     if (!empty($userdata['password']) && $this->auth->check_password($_POST['password'], $userdata['password'])) {
         $this->auth->auth_ok($userdata);
         $this->screen_top();
     } else {
         $this->auth_error_mess = $this->auth->auth_no();
         $this->screen_login();
     }
 }
开发者ID:miyamoto-shinji,项目名称:php_01,代码行数:13,代码来源:MemberController.php

示例2: Smarty

define('_ROOT_DIR', __DIR__ . '/');
require_once _ROOT_DIR . '../php_libs/init.php';
$smarty = new Smarty();
$smarty->template_dir = _SMARTY_TEMPLATES_DIR;
$smarty->compile_dir = _SMARTY_TEMPLATES_C_DIR;
$smarty->config_dir = _SMARTY_CONFIG_DIR;
$smarty->cache_dir = _SMARTY_CACHE_DIR;
// Authクラスの読み込み
$auth = new Auth();
$auth->set_authname(_MEMBER_AUTHINFO);
$auth->set_sessname(_MEMBER_SESSNAME);
$auth->start();
if (!empty($_POST['type']) && $_POST['type'] == 'authenticate') {
    // 認証機能
    $MemberModel = new MemberModel();
    $userdata = $MemberModel->get_authinfo($_POST['username']);
    if (!empty($userdata['password']) && $auth->check_password($_POST['password'], $userdata['password'])) {
        $auth->auth_ok($userdata);
    } else {
        // 何もしません
    }
} else {
    if (!empty($_GET['type']) && $_GET['type'] == 'logout') {
        $auth->logout();
    }
}
if ($auth->check()) {
    // 認証済み
    $smarty->assign("title", "会員ページ");
    $file = 'testauth.tpl';
} else {
开发者ID:miyamoto-shinji,项目名称:php_01,代码行数:31,代码来源:testauth4.php


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