正則表達(dá)式也稱為模式表達(dá)式,自身具有一套非常完整的、可以編寫模式的語(yǔ)法體系,提供了一種靈活且直觀的字符串處理方法。正則表達(dá)式通過(guò)構(gòu)建具有特定規(guī)則的模式,與輸入的字符串信息比較,從而實(shí)現(xiàn)字符串的匹配、查找、替換及分割等操作。
?php
if(isset($_POST["sub"])){
$text=$_POST["text"];
$patten='^[0-9]*$';
if(!preg_match($patten,$text,$x)){
echo"script>alert('用戶沒(méi)有輸入數(shù)字');/script>";
}else{
if($x1){
$y=$x;
echo "y=".$y."br>";
}else if($x10){
$y=2*$x-1;
echo
"y=".$y."br>";
}else{
$y=3*$x-11;
echo "y=".$y."br>";
}
}
?>
html>
head>
/head>
body>
form method='post'>
請(qǐng)輸入信息:input type="text"name="text">
input type="submit"name="sub"value="提交">
/form>
/body>
/html>
html>
head>
/head>
body>
form method='post'>
注冊(cè)賬號(hào):input type="text"name="aNum">br>
登錄密碼:input type="password"name="pwd">br>
重復(fù)密碼:input type="password"name="rPwd">br>
郵箱地址:input type="text"name="email">br>
手機(jī)號(hào)碼:input type="text"name="tel">br>
input type="submit"name="sub"value="注冊(cè)">
?php
if(isset($_POST["sub"])){
$aNum=$_POST["aNum"];
$pwd=$_POST["pwd"];
$rPwd=$_POST["rPwd"];
$email=$_POST["email"];
$tel=$_POST["tel"];
$patten1="^\w+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$";//驗(yàn)證郵箱
$patten2="[0-9]{11}";//11位數(shù)字組成,驗(yàn)證手機(jī)號(hào)碼
$patten3="[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*"http://驗(yàn)證賬號(hào)
if(!preg_match($patten3,$aNum)){
echo"script>alert('賬號(hào)格式不對(duì)');/script>";
}else{
if($pwd.length6){
echo"script>alert('密碼格式不對(duì)');/script>";
}else{
if(!preg_match($patten,$email)){
echo"script>alert('email格式不正確');/script>";
}else{
if(!preg_match($patten2,$tel)){
echo"script>alert('手機(jī)號(hào)碼格式不正確');/script>";
}else{
if(strlen($pwd)!=strlen($rPwd)){
echo"script>alert('兩次密碼不一致');/script>";
}else{
echo"用戶您好!您的賬號(hào)為:".$aNum.",密碼為:".$pwd.",郵箱為:".
$email.",手機(jī)號(hào)碼為:".$tel;
}
}
}
}
}
?>
/form>
/body>
/html>