PHP code example of php-sword / sword-validate
1. Go to this page and download the library: Download php-sword/sword-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/ */
php-sword / sword-validate example snippets
namespace app\index\validate;
use sword\validate\Validate;
class User extends Validate
{
protected $rule = [
'name' => 're' => '名称必须',
'name.max' => '名称最多不能超过25个字符',
'age.number' => '年龄必须是数字',
'age.between' => '年龄只能在1-120之间',
'email' => '邮箱格式错误',
];