apeblog/app/common/validate/Messageform.php

29 lines
873 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | HulaCWMS 呼啦企业网站管理系统
// +----------------------------------------------------------------------
// | Copyright (c) 2021 https://www.kaifashu.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: 开发树
// +----------------------------------------------------------------------
namespace app\common\validate;
use think\Validate;
/**
* 后台菜单验证器
*/
class MessageForm extends Validate {
protected $rule = [
'content' => 'require',
'tel' => 'number|max:11',
];
protected $message = [
'content.require' => '请输入留言内容!',
'tel.number' => '手机号必须是数字!',
'tel.max' => '手机号不得超过11位',
];
}