*/ namespace generate\field; class Radio extends Field { public static $html = << \n EOF; public static $rules = [ 'required' => '非空', 'regular' => '自定义正则' ]; public static function create($data) { $html = self::$html; $html = str_replace(array('[FORM_NAME]', '[FIELD_NAME]'), array($data['form_name'], $data['field_name']), $html); return $html; } }