PHP code example of mzh / hyperf-validate

1. Go to this page and download the library: Download mzh/hyperf-validate library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mzh / hyperf-validate example snippets


方式一:
validate = 验证类 例如   validate=AdminValidation::class
方式2:
mode="Admin" 验证的模块规则/app/Validate/AdminValidation.php 文件的验证规则
方式3:
不填写以上2个参数,默认取验证器为当前类文件名的验证器文件

scene="场景" 场景,验证哪个场景。默认不写为默认的验证规则
filter=true 过滤掉规则外无用参数 过滤后会重新写入对应的字段内,需要时直接取,数据是安全的,验证过的
security=true 严格验证模式,如果开启,则用户传入无用参数,直接抛出异常,提示传入的字段xx无效,
field="data" 方法的参数名,例如 function($data,$array,$array3) 需要验证这个方法的$array参数,这里填array

use Mzh\Validate\Annotations\RequestValidation;

/**
 * @RequestValidation(filter=true,throw=true)
 */
public function login(){
      //这里取到的 $data 是安全的。
     $data = $this->request->getParsedBody();
}

use Mzh\Validate\Annotations\Validation;

/**
 * @Validation(mode="Admin",scene="login",field="data")
 * @Validation(mode="Admin",scene="array的规则",field="array")
 */
public function login($data,$array,$array2){
      //这里取到的 $data,$array,$array2 是安全的,经过验证器验证过的

}