程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP如何檢測密碼長度

PHP如何檢測密碼長度

編輯:PHP綜合

一 實例

1、index.php

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html; charset=gb2312">
<title>檢測字符串的長度</title>
<styletype="text/css">
<!--
.style1 {font-size: 12px}
.style2 {
font-family: "華文仿宋";
font-size: 14px;
}
body {
margin-left: 00px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.STYLE3 {color: #FF0000}
-->
</style>
</head>

<body>
<tablewidth="392"height="257"border="0"cellpadding="0"cellspacing="0">
<tr>
<tdalign="left"valign="top"><tablewidth="392"border="0"cellpadding="0"
cellspacing="0">
<tr>
<tdwidth="48"height="113">&nbsp;</td>
<tdwidth="75">&nbsp;</td>
<tdwidth="119">&nbsp;</td>
<tdwidth="72">&nbsp;</td>
<tdwidth="78"align="center"class="style1">&nbsp;</td>
</tr>
<formname="form1"method="post"action="index_ok.php">
<tr>
<tdheight="33"></td>
<tdalign="center"><spanclass="style1">用戶名</span>:</td>
<td><inputname="user"type="text"id="user"size="15"></td>
<tdalign="center"><inputname="imageField"type="image"
src="images/btn_dl.jpg"width="50"height="20"border="0"></td>
<td>&nbsp;</td>
</tr>
<tr>
<tdheight="27">&nbsp;</td>
<tdalign="center"><spanclass="style1">密碼</span>:</td>
<td><inputname="pwd"type="password"id="pass"size="15"></td>
<tdcolspan="2"align="left"><spanclass="STYLE3">*&nbsp;密碼長度不能少於6位
</span></td>
</tr>
</form>
<tr>
<tdheight="31">&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>

2、index_ok.php

  <?php 
if(strlen($_POST["pwd"])<6){//檢測用戶密碼的長度是否小於6
echo "<script>alert('用戶密碼的長度不得少於6位!請重新輸入'); history.back();</script>";
}
else{
echo "用戶信息輸入合法!";
}
?>

二 運行結果

int strlen ( string $string )

返回給定的字符串 string 的長度。 

參數 

string

需要計算長度的字符串。 

返回值 

成功則返回字符串string 的長度;如果string 為空,則返回0。

來源:http://cakin24.iteye.com/blog/2348826

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved