一 實例
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"> </td>
<tdwidth="75"> </td>
<tdwidth="119"> </td>
<tdwidth="72"> </td>
<tdwidth="78"align="center"class="style1"> </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> </td>
</tr>
<tr>
<tdheight="27"> </td>
<tdalign="center"><spanclass="style1">密碼</span>:</td>
<td><inputname="pwd"type="password"id="pass"size="15"></td>
<tdcolspan="2"align="left"><spanclass="STYLE3">* 密碼長度不能少於6位
</span></td>
</tr>
</form>
<tr>
<tdheight="31"> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </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