发送到自定义验证方法的参数名称是什么?

时间:2014-01-23 19:41:24

标签: laravel laravel-4

我创建了两个自定义验证方法profilePhotoWidthprofilePhotoHeight,当我使用它们时,我也发送了一个参数。如何获取错误消息的此参数?命名被替换的单词是什么?

<?php
$validator = Validator::make(
    Input::all(),
    [ 
        'logo' => ['mimes:jpeg,jpg,png,gif', 'max:1024', 'profilePhotoWidth:300', 'profilePhotoHeight:300']
    ],
    [ 
        'logo.profile_photo_width' => 'Max photo width is :??? px.',
        'logo.profile_photo_height' => 'Max photo height is :??? px.'
    ]
);

1 个答案:

答案 0 :(得分:0)

默认情况下有2个参数::key:message