溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中傳統(tǒng)驗證與thinkphp框架的用法

發(fā)布時間:2021-09-06 14:54:50 來源:億速云 閱讀:143 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“php中傳統(tǒng)驗證與thinkphp框架的用法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“php中傳統(tǒng)驗證與thinkphp框架的用法”吧!

PHP(超文本預(yù)處理器)可用于小型網(wǎng)站的搭建,當(dāng)用戶需要注冊登錄是,需要與后臺數(shù)據(jù)庫進(jìn)行匹配合格才能注冊和登錄,傳統(tǒng)的方式步驟繁多,需要先連接數(shù)據(jù)庫再用sql語句進(jìn)行插入。

<?php
header("Content-type: text/html; charset=utf-8");
$conn =mysqli_connect("localhost","root","");
if (!$conn){
   echo "<script>alert('連接失??!');history.go(-1);</script>";
  } 
mysqli_select_db($conn,"liuyanban");
mysqli_query($conn,'SET NAMES utf8');
$password=$_POST['password'];
$username=$_POST['username'];
$face="yellow.png";
$result=mysqli_query($conn,"SELECT username from user1 where username = '$username'"); 
$a=mysqli_num_rows($result);
if($a)
{    
   echo "<script language=javascript>alert('用戶名已存在!');location.href='reg.html'</script>";
}
else
{   
    $sql = mysqli_query($conn,"INSERT INTO user1(username,password,face)VALUES('1' ,'2','yellow.png')");
   if($sql)
   {
      echo "<script language=javascript>alert('注冊成功!');location.href='login.html'</script>";
   }
   else
   {
      echo "<script>alert('注冊失敗!');location.href='reg.html'</script>";
   }
}
?>

以上是一個原生php注冊實例,需要用mysqli_select_db()、mysqli_query()等函數(shù)先進(jìn)行數(shù)據(jù)庫連接,同時只有通過mysqli_query()函數(shù)才能執(zhí)行sql語句,最后通過if語句進(jìn)行類別判斷和其他一系列限制操作。在原生php階段實用性比較高,便于理解,過程很清晰,但是在一個項目工程中用這樣的語句代碼編寫不便于相互交流,非常繁重復(fù)雜,所以需要運(yùn)用thinkphp框架搭建項目才能使編碼人員相互可以對接,也便于后期代碼的修改和功能的添加。那么這里就不贅述框架詳細(xì)了,所以在thinkphp框架下mvc模式中運(yùn)用控制器(C)和模型(M)進(jìn)行表單自動驗證:

控制器中使用表單靜態(tài)驗證:

public function doreg(){
       $data=D('user');
       $d=array();
         $d['username']=$_POST['username'];
         $d['password']=$_POST['password'];
         $d['time']=date("Y-m-d H:i:s",time());
         $d['qq']=$_POST['qq'];
         $d['class']=$_POST['class'];
         $mess=$data->create();
         if (!$mess){    //表單自動驗證
            $this->error($data->getError(),'Member/member',3);
         }else{
            $data->add();
            echo "<script language=javascript>alert('注冊成功!');location.href='member.html'</script>";
           }
         }

模板中列出需要驗證的字段:

<?php 
namespace Home\Model;
use Think\Model;
  class UserModel extends Model{
    protected $tableName ='user';   
    protected $_validate=array(                 //進(jìn)行靜態(tài)驗證
     //array(驗證字段1,驗證規(guī)則,錯誤提示,[驗證條件,附加規(guī)則,驗證時間]),
      array('username','require','用戶名必填!'),
      array('username','','帳號名稱已經(jīng)存在!',0,'unique',1),
      array('repassword','password','兩次密碼不一致!',0,'confirm'),
      array('qq','require','qq必填!'),
      array('qq','','帳號名稱已經(jīng)存在!',0,'unique',1),
      array('class','require','班級必填!'),
      array('j_verify','require','驗證碼必須!'),
    );
     
  }
?>

這里以注冊為例,登錄類似,若驗證錯誤,則運(yùn)用$this->error($data->getError(),'Member/member',3);表單靜態(tài)驗證使用很方便。

到此,相信大家對“php中傳統(tǒng)驗證與thinkphp框架的用法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI