php對日期和郵箱位址以及使用者名驗證實例

來源:互聯網
上載者:User
關鍵字 網路程式設計 PHP教程

php教程日期 郵箱位址 使用者名驗證實例
<form id="form1" name="form1" method="post" action="">
  <label>name
  <input name="name" type="text" id="name" />
  </label>
  <p>
 &n bsp;  <label>birthday
    <input name="birthday" type="text" id="birthday" />
    </label>
  </p>
  <p>
    <label> email
    <input name="email" type="text" id="email" />
    </label>
  </p>
  <p>
    <label>
    <input type= "submit" name="Submit" value="submit" />
    </label>
  </p>
</form >
<?php
//這個函數主要用來檢查提交的表單資料是否有錯(validate)
//實際應用上使用者輸入資料的檢驗(validate)及過濾(filter)都涉到程式安全性,非常重要, 必不可少
//在寫實際應用時不會把$_POST直接放在函數裡,這裡是一個姑息的解決方法,希望大家能改正

if( $_POST )
{
 form_error();
}
function form_error() {
    $_POST['name'] = trim(strip_tags($_POST['name'])); //這個實際上是Filter
    $len_name = strlen($_POST['name']);
    if($len_name > 30 || $len_name < 2) {
        $msg = '姓名長度必須大於2小於30<br />';
    }
    $date = explode('-', $_POST['birthday']);
    if(sizeof($date) != 3) {
        $msg .= '日期格式錯誤<br /& gt;';
    } else {
        if(!checkdate($date[1], $date[2], $ date[0])) {
            $msg .= '日期不正確<br />';
& nbsp;       }
    }
    if(!eregi("^[a-z'0-9]+( [._-] [a-z'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$", $_POST['email'])) {
        $msg .= '郵箱格式錯誤';
    }
     return $msg;
}
?>
 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.