• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP auth_logout函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中auth_logout函数的典型用法代码示例。如果您正苦于以下问题:PHP auth_logout函数的具体用法?PHP auth_logout怎么用?PHP auth_logout使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: auth_is_member_of

function auth_is_member_of($groupname)
{
    try {
        foreach (backend_hent_brugers_medlemskaber($_SESSION['brugernavn']) as $group) {
            if ($group['gruppenavn'] == $groupname) {
                return true;
            }
        }
    } catch (DatabaseException $e) {
    } catch (UkendtBrugerException $e) {
        auth_logout();
        header('location: login.php');
        die('User not found.');
    }
    return false;
}
开发者ID:knet,项目名称:kolsystem,代码行数:16,代码来源:functions.inc.php


示例2: form_security_validate

 * MantisBT Core API's
 */
require_once 'core.php';
require_once 'email_api.php';
form_security_validate('signup');
$f_username = strip_tags(gpc_get_string('username'));
$f_email = strip_tags(gpc_get_string('email'));
$f_captcha = gpc_get_string('captcha', '');
$f_username = trim($f_username);
$f_email = email_append_domain(trim($f_email));
$f_captcha = utf8_strtolower(trim($f_captcha));
# Retrieve captcha key now, as session might get cleared by logout
$t_form_key = session_get_int(CAPTCHA_KEY, null);
# force logout on the current user if already authenticated
if (auth_is_user_authenticated()) {
    auth_logout();
}
# Check to see if signup is allowed
if (OFF == config_get_global('allow_signup')) {
    print_header_redirect('login_page.php');
    exit;
}
if (ON == config_get('signup_use_captcha') && get_gd_version() > 0 && helper_call_custom_function('auth_can_change_password', array())) {
    # captcha image requires GD library and related option to ON
    $t_key = utf8_strtolower(utf8_substr(md5(config_get('password_confirm_hash_magic_string') . $t_form_key), 1, 5));
    if ($t_key != $f_captcha) {
        trigger_error(ERROR_SIGNUP_NOT_MATCHING_CAPTCHA, ERROR);
    }
    # Clear captcha cache
    session_delete(CAPTCHA_IMG);
}
开发者ID:Tarendai,项目名称:spring-website,代码行数:31,代码来源:signup.php


示例3: array

<?php

//prepare the templates and include all neccessary
require_once './lib/common.inc.php';
//Preprocessing
if ($error == false) {
    if (isset($_GET['token']) && isset($_SESSION['logout_cookie']) && $_GET['token'] == $_SESSION['logout_cookie']) {
        //load language specific variables
        require_once $stylepath . '/login.inc.php';
        if (auth_logout() == true) {
            $_SESSION = array();
            session_destroy();
        }
    }
}
$target = isset($_GET['target']) ? $target : "index.php";
header('Location: ' . urlencode($target));
die;
开发者ID:pawelzielak,项目名称:opencaching-pl,代码行数:18,代码来源:logout.php


示例4: login_display


//.........这里部分代码省略.........
				Try <a href="index.php?view=login&amp;task=login">logging in</a> if that is the case.</p>
				<?php 
                } else {
                    // Format the birth date correctly
                    $data['birth_date'] = form2sql_date($data['birth_date']);
                    $user = auth_register($data);
                    if ($user == null) {
                        $show_form = false;
                        ?>
	<p><strong>Thanks for registering!</strong><br /> Please proceed to <a href="index.php?view=login&amp;task=login">login</a> into your new account.</p>
	<?php 
                    } else {
                        ?>
	<p><b>That user-handle has already been taken!</b><br/> It belongs to an user registered with the name <?php 
                        echo $user['first_name'] . ' ' . $user['last_name'];
                        ?>
. Please try again with another handle.</p>
	<?php 
                    }
                }
            }
            if ($show_form) {
                ?>
<p><strong>Please fill in your details below.</strong><br /> 
Please choose your <strong>handle</strong> and <strong>division</strong> carefully. Once chosen, they cannot be changed. Moreover, choosing an inappropriate division will lead to disqualification.
<br> 
<br>Any doubts and problems should find their way to the <? echo '<a href="mailto:'.$cfg["site"]["email"].'">admins</a>'; ?>.
</p>
<?php 
                $form->display();
            }
            break;
        case 'logout':
            auth_logout();
            redirect('index.php');
            break;
        case 'login':
            $form = new HTML_QuickForm('loginForm', 'post', 'index.php?view=login&task=login');
            $form->addElement('header', null, 'Login');
            $form->addElement('text', 'handle', 'Handle:');
            $form->addElement('password', 'password', 'Password:');
            $form->addElement('submit', null, 'Submit');
            $form->applyFilter('handle', 'trim');
            $form->applyFilter('handle', 'strtolower');
            if ($form->validate()) {
                if (auth_login($form->getSubmitValue('handle'), $form->getSubmitValue('password'))) {
                    redirect('index.php');
                } else {
                    echo "<p>Invalid handle or password! Please try again.</p>\n";
                }
            } else {
                $signature = '<i>' . $_SERVER['SERVER_SOFTWARE'] . ' Server at ' . $_SERVER['SERVER_NAME'] . ', port ' . $_SERVER['SERVER_PORT'] . '</i>';
                ?>
<p><strong>Welcome!</strong><br />
Please login to proceed, or <a href="index.php?view=login&amp;task=register">register</a>
 with us if you're new here.</p>
<?php 
            }
            $form->display();
            ?>
<p class="system_info">This is <b>OGS 2</b> running on <? echo $signature ?>.<br />
<b>Server System:</b> <?php 
            system("uname -srmp");
            ?>
</p>
<hr />
开发者ID:reddragon,项目名称:Online-Grading-System,代码行数:67,代码来源:login.php


示例5: var_dump

        echo var_dump($arr);
        //$contents = fread($handle, filesize($filename));
        fclose($handle);
        // parse dic file
        // ...
    }
    echo "error - {$error} id is {$id} " . var_dump($_FILES);
    if (!$error) {
        echo var_dump($files);
    }
}
//
//  New case block
//
if ($cmd == "logout") {
    $return = auth_logout();
}
if ($cmd == "auth") {
    $return = auth_login();
}
//
if ($auth) {
    $subcmd = substr($cmd, strlen($cmd) - 4);
    if ($subcmd == "_lst" || $subcmd == "_str" || $subcmd == "_upd" || $subcmd == "_del" || $subcmd == "_new") {
        $return = process_table();
    } else {
        if ($cmd == "text_anl") {
            $return = text_analyser();
        }
        if ($cmd == "dic_upl") {
            $return = dic_upload();
开发者ID:segallar,项目名称:topic_compiler,代码行数:31,代码来源:server.php


示例6: router

/**
 * @description router app
 * @param $uri
 */
function router($uri)
{
    $uri = explode('?', $uri);
    $uri = ltrim($uri[0], '/');
    $page = !empty($_GET['page']) ? $_GET['page'] : null;
    $id = !empty($_GET['id']) ? $_GET['id'] : null;
    $method = strtolower($_SERVER["REQUEST_METHOD"]);
    /**
     * @method POST
     */
    if ($method == 'post') {
        switch ($uri) {
            case 'login':
                post_login_controller();
                break;
            case 'post/store':
                store_post_controller();
                break;
            case "post/{$id}" && isset($_POST['_method']) && $_POST['_method'] == 'PUT':
                update_post_controller($id);
                break;
            case "post/{$id}" && isset($_POST['_method']) && $_POST['_method'] == 'DELETE':
                destroy_post_controller($id);
                break;
            default:
                throw new RuntimeException('routing error');
        }
    }
    /**
     * @method GET
     */
    if ($method == 'get') {
        switch ($uri) {
            case '':
                home_controller();
                break;
            case "single/{$id}":
                show_controller($id);
                break;
            case "category/{$id}":
                show_post_by_category_controller($id);
                break;
            case 'login':
                login_controller();
                break;
            case "post/{$id}/edit":
                edit_post_controller($id);
                break;
            case preg_match('/dashboard/', $uri) ? true : false:
                index_post_controller($page);
                break;
            case 'post/create':
                create_post_controller();
                break;
            case 'logout':
                auth_logout();
                redirect('/');
                break;
            default:
                throw new RuntimeException('routing error');
        }
    }
}
开发者ID:Antoine07,项目名称:pmcv,代码行数:67,代码来源:router.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP auth_nameencode函数代码示例发布时间:2022-05-24
下一篇:
PHP auth_logoff函数代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap