thinkphp5.0驗證類使用方法

來源:互聯網
上載者:User
這篇文章主要介紹了關於thinkphp5.0驗證類使用方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

通過一個執行個體,給大家講解一下如果通過thinkphp5.0驗證類的方法。

自訂驗證類,需繼承Validate類

比如在home模組建立validate檔案夾,再建立Test.php驗證類,內容如下:

<?phpnamespace app\home\validate;use think\Validate;class Test extends Validate{  protected $rule = [    'name' => 'require|regex:/.{6}/',    'age' => 'number|between:1,120',    'email' => 'email'  ];  protected $message = [    'name.require' => 'name不能少',    'name.regex' => 'name不能少於6個字元',    'age.number' => 'age必須是數字',    'age.between' => 'age必須在1到120之間',    'email.email' => 'email格式不對',  ];  protected $scene = [    'name_email' => ['name','email'],  ];}?>

在Index控制器test方法使用

<?phpnamespace app\home\controller;use think\Loader;use think\Controller;class Index extends Controller{  public function test(){    $date = [      'name'=>'qw2e',      'email'=>'12313'    ];    //$validate = Loader::validate('Test');//使用載入類Loader    $validate = validate('Test');//使用助手函數    $result = $validate->scene('name_email')->check($date);    if(!$result){      dump($validate->getError());    }  }}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.