您好,登錄后才能下訂單哦!
這篇文章給大家介紹php中怎么判斷當(dāng)前用戶已在別處登錄,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
主要思路如下:
1.登錄時(shí),將用戶的SessionID記錄下來
2.驗(yàn)證登錄時(shí),將記錄的該用戶SessionID與當(dāng)前SessionID匹配
3.如果不相同,說明在別處登錄
完整實(shí)例代碼點(diǎn)擊此處本站下載。
首先,進(jìn)入http://localhost/login_single/index.php可查看登錄狀態(tài)。
index.php頁面代碼如下:
復(fù)制代碼 代碼如下:
<?php
//開啟Session
session_start();
header("Content-type: text/html; charset=utf-8");
//取Session中的用戶信息
$username=$_SESSION['username'];
//判斷是否有效
if(!isset($username)){
echo "您未登錄!<a href='login.html'>登錄</a>";
exit();
}
//登錄時(shí)保存的該用戶SessionID
$sessin_id=file_get_contents('session_id/'.$username);
//如果當(dāng)前的SessionID與之前記錄的SessionID不匹配
//說明已在別處登錄
if(session_id() != $sessin_id){
//注銷當(dāng)前用戶
unset($_SESSION['username']);
echo "您已在別處登錄!<a href='login.html'>從新登錄</a>";
exit();
}else{
echo "歡迎您:".$username;
echo " <a href='logout.php'>注銷</a>";
}
echo "<p>--這是登錄之后才能看到的內(nèi)容--</p>";
對于未登錄的用戶則提示跳轉(zhuǎn)到 http://localhost/login_single/login.html登錄頁面,login.html頁面代碼如下:
復(fù)制代碼 代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>登錄</title>
</head>
<body>
<form method="post" action="login.php">
用戶名:<input name="username"><br>
密 碼:<input name="password" type="password"><br>
<input type="submit" value="登錄">
</form>
<div>
提示:測試用戶名:admin 密碼:123
</div>
</body>
</html>
登錄成功后由login.php頁面進(jìn)行相應(yīng)的session判斷。
login.php頁面代碼如下:
復(fù)制代碼 代碼如下:
<?php
//開啟Session
session_start();
//設(shè)置編碼
header("Content-type: text/html; charset=utf-8");
//接收表單提交的內(nèi)容
$username=$_POST['username'];
$password=$_POST['password'];
//模擬驗(yàn)證用戶登錄
if($username=="admin" && $password=="123"){
//登錄成功,將用戶名保存到Session中
$_SESSION['username']=$username;
//創(chuàng)建目錄
if(!file_exists('session_id')){
mkdir('session_id');
}
//保存的文件名
$filename='session_id/'.$username;
//當(dāng)前登錄用戶的SessionId
$session_id=session_id();
//當(dāng)SessionID保存到對應(yīng)的文件中
//實(shí)際應(yīng)用,可以保存到數(shù)據(jù)庫、memcache等
file_put_contents($filename,$session_id);
//跳到主頁
header ('Location: index.php');
}else{
echo ('<script>alert("登錄失敗");window.location="login.html"</script>');
exit();
}
關(guān)于php中怎么判斷當(dāng)前用戶已在別處登錄就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。