16 lines
		
	
	
		
			322 B
		
	
	
	
		
			PHP
		
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			322 B
		
	
	
	
		
			PHP
		
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								namespace app\validate;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use think\Validate;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class Slide extends Validate
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    protected $rule = [
							 | 
						||
| 
								 | 
							
								        'title' => 'require',
							 | 
						||
| 
								 | 
							
								        'url' => 'url',
							 | 
						||
| 
								 | 
							
								    ];
							 | 
						||
| 
								 | 
							
								    protected $message = [
							 | 
						||
| 
								 | 
							
								        'title.require' => '标题必须',
							 | 
						||
| 
								 | 
							
								        'url.url' => '请填写有效的网址,以http://或https://开头'
							 | 
						||
| 
								 | 
							
								    ];
							 | 
						||
| 
								 | 
							
								}
							 |