File: /www/wwwroot/cms.smpolia.com/application/links/validate/Links.php
<?php
// +----------------------------------------------------------------------
// | Yzncms [ 御宅男工作室 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2018 http://yzncms.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 御宅男 <530765310@qq.com>
// +----------------------------------------------------------------------
// +----------------------------------------------------------------------
// | 链接验证
// +----------------------------------------------------------------------
namespace app\links\validate;
use think\Validate;
class Links extends Validate
{
//定义验证规则
protected $rule = [
'name|网站名称' => 'require',
'url|网站链接' => 'require|url',
];
}