php使用crypt()函數(shù)進(jìn)行加密
一、代碼
<?php $str = '應(yīng)用crypt()函數(shù)進(jìn)行單向加密!'; //聲明字符串變量$str echo '加密前$str的值為:'.$str; $crypttostr = crypt($str); //對(duì)變量$str加密 echo '<p>加密后$str的值為:'.$crypttostr; //輸出加密后的變量 ?>
二、運(yùn)行結(jié)果
參數(shù)不帶salt,每次加密得出的密文都不一樣。
加密前$str的值為:應(yīng)用crypt()函數(shù)進(jìn)行單向加密!
加密后$str的值為:$1$Re4.Gg4.$D.yd00xX0fFfIfp6KrKGN0
三、代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>使用crypt函數(shù)進(jìn)行數(shù)據(jù)驗(yàn)證</title> <style type="text/css"> <!-- body,td,th { font-size: 12px; } body { margin-left: 10px; margin-top: 10px; margin-right: 10px; margin-bottom: 10px; } .STYLE1 { font-size: 14px; font-weight: bold; } --> </style> </head> <body> <div align="center"> <?php $conn = mysql_connect("localhost","root","root") or die("數(shù)據(jù)庫(kù)鏈接錯(cuò)誤".mysql_error()); mysql_select_db("db_database21",$conn) or die("數(shù)據(jù)庫(kù)訪問(wèn)錯(cuò)誤".mysql_error()); mysql_query("set names gb2312"); ?> </div> <table width="777" height="587" border="0" align="center" cellpadding="0" cellspacing="0" background="images/bg.jpg"> <tr> <td width="149" height="200"> </td> <td width="448"> </td> <td width="158"> </td> </tr> <tr> <td height="187"> </td> <td align="center" valign="middle"> <form id="form1" name="form1" method="post" action="index.php"> <table height="129" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="100" height="30" align="right" valign="middle" scope="col"><span class="STYLE1">用戶名:</span></td> <td width="100" height="30" align="left" valign="middle" scope="col"><label for="textfield"></label> <input name="username" type="text" id="username" size="24" /></td> <td width="100" align="center" valign="middle" scope="col"> </td> </tr> <tr> <td height="30" align="right" valign="middle" class="STYLE1" scope="col">密碼:</td> <td height="30" align="left" valign="middle" scope="col"><input name="password" type="password" id="password" size="25" /></td> <td align="center" valign="middle" scope="col"> </td> </tr> <tr> <td height="40" colspan="3" align="center" valign="middle" scope="col"><input type="image" name="imageField" src="images/bg2.JPG" /> <input type="image" name="imageField2" src="images/bg1.JPG" onclick="form.reset();return false;" /></td> </tr> </table> </form> <?php if(trim($_POST[username])!= "" and trim($_POST[password])!= ""){ $usr = crypt(trim($_POST[username]),$_POST[username]); $pwd = crypt(trim($_POST[password]),$_POST[password]); $sql = "select * from tb_user where username = '".$usr."' and password='".$pwd."'"; $rst = mysql_query($sql,$conn); $result=mysql_num_rows($rst); if($result>0){ echo "<font color='red'>用戶登錄成功。</font>"; }else{ echo "<font color='green'>用戶登錄失敗!</font>"; } }else{ echo "請(qǐng)認(rèn)真填寫用戶名和密碼!"; } ?></td> <td> </td> </tr> <tr> <td height="200"> </td> <td> </td> <td> </td> </tr> </table> </body> </html>
四、運(yùn)行結(jié)果
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- php 的加密函數(shù) md5,crypt,base64_encode 等使用介紹
- php基于mcrypt的加密解密實(shí)例
- PHP加密擴(kuò)展庫(kù)Mcrypt安裝和實(shí)例
- PHP mcrypt可逆加密算法分析
- PHP 加密/解密函數(shù) dencrypt(動(dòng)態(tài)密文,帶壓縮功能,支持中文)
- php結(jié)合md5實(shí)現(xiàn)的加密解密方法
- php實(shí)現(xiàn)MD5加密16位(不要默認(rèn)的32位)
- php結(jié)合md5的加密解密算法實(shí)例
- 利用PHP腳本在Linux下用md5函數(shù)加密字符串的方法
- PHP常見(jiàn)加密函數(shù)用法示例【crypt與md5】
相關(guān)文章
php 數(shù)組隨機(jī)取值的簡(jiǎn)單實(shí)例
下面小編就為大家?guī)?lái)一篇php 數(shù)組隨機(jī)取值的簡(jiǎn)單實(shí)例。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-05-05瀏覽器關(guān)閉后,能繼續(xù)執(zhí)行的php函數(shù)(ignore_user_abort)
希望關(guān)閉瀏覽器后,程序能繼續(xù)在后臺(tái)跑,這種情況下需要用到ignore_user_abort()函數(shù)2012-08-08PHP Class&Object -- 解析PHP實(shí)現(xiàn)二叉樹(shù)
本篇文章是對(duì)PHP中二叉樹(shù)的實(shí)現(xiàn)代碼進(jìn)行詳細(xì)的分析介紹,需要的朋友參考下2013-06-06ThinkPHP6使用JWT+中間件實(shí)現(xiàn)Token驗(yàn)證實(shí)例詳解
這篇文章主要介紹了ThinkPHP6使用JWT+中間件實(shí)現(xiàn)Token驗(yàn)證的方法,結(jié)合實(shí)例形式詳細(xì)分析了JWT的功能、原理及token驗(yàn)證相關(guān)操作技巧,需要的朋友可以參考下2023-06-06在mysql數(shù)據(jù)庫(kù)原有字段后增加新內(nèi)容
在mysql數(shù)據(jù)庫(kù)原有字段后增加新內(nèi)容2009-11-11