[李景山php]每天laravel-20161006|Validator.php-6

来源:互联网 发布:fm2017数据分析师 编辑:程序博客网 时间:2024/05/16 10:12
    /**     * Validate that an attribute is different from another attribute.     *     * @param  string  $attribute     * @param  mixed   $value     * @param  array   $parameters     * @return bool     */    protected function validateDifferent($attribute, $value, $parameters)    {        $this->requireParameterCount(1, $parameters, 'different');// require Parameter Count        $other = Arr::get($this->data, $parameters[0]);//Arr::get(data,)        return isset($other) && $value !== $other;//return value    }// Validate that an attribute is different from another attribute    /**     * Validate that an attribute was "accepted".     *     * This validation rule implies the attribute is "required".     *     * @param  string  $attribute     * @param  mixed   $value     * @return bool     */    protected function validateAccepted($attribute, $value)    {        $acceptable = ['yes', 'on', '1', 1, true, 'true'];        return $this->validateRequired($attribute, $value) && in_array($value, $acceptable, true);    }//Validate that an attribute was "accepted"    // change every thing it is ok!
0 0