PHP code example of tegic / hyperf-validation-extra

1. Go to this page and download the library: Download tegic/hyperf-validation-extra 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/ */

    

tegic / hyperf-validation-extra example snippets




declare(strict_types=1);
/**
 * This file is part of Backend Skeleton.
 *
 * @Auther     tegic
 * @Contact    [email protected]
 */
namespace App\Validate;

class TestValidate
{
    public function rules(): array
    {
        return [
            'user_id' => 'rn [
            'test' => [
                'user_id',
                'password' => '



declare(strict_types=1);
/**
 * This file is part of Backend Skeleton.
 *
 * @Auther     tegic
 * @Contact    [email protected]
 */
namespace App\Controller;

use App\Validate\TestValidate;
use Tegic\HyperfValidationExtra\Annotation\Validation;

class IndexController extends AbstractController
{
    /**
     * 不指定参数 默认验证数据从 `$this->request->all()` 获取,场景值为 `test`
     * @return \Psr\Http\Message\ResponseInterface
     */
    #[Validation(validate: TestValidate::class,field: "",scene: "test")]
    public function index()
    {
        $user = $this->request->input('user', 'Hyperf');
        $method = $this->request->getMethod();
        $this->test($this->request->all());
        return $this->success($this->request->all());
    }

    /**
     * 指定参数为 `params` 参数为数组形式 
     * @param $params
     */
     #[Validation(validate: TestValidate::class,field: "params",scene: "test")]
    protected function test($params)
    {
    }
}