Pop\Validator\Numeric::evaluate PHP Метод

evaluate() публичный Метод

Method to evaluate the validator
public evaluate ( mixed $input = null ) : boolean
$input mixed
Результат boolean
    public function evaluate($input = null)
    {
        // Set the input, if passed
        if (null !== $input) {
            $this->input = $input;
        }
        // Set the default message
        if (null === $this->defaultMessage) {
            if ($this->condition) {
                $this->defaultMessage = I18n::factory()->__('The value must be numeric.');
            } else {
                $this->defaultMessage = I18n::factory()->__('The value must not be numeric.');
            }
        }
        // Evaluate the input against the validator
        if ((is_numeric($this->input) == $this->value) != $this->condition) {
            $this->result = true;
        } else {
            $this->result = false;
        }
        return $this->result;
    }

Usage Example

Пример #1
0
 public function testEvaluateFalse()
 {
     $v = new Numeric(null, null, false);
     $this->assertFalse($v->evaluate(123456));
     $this->assertTrue($v->evaluate('abcdef'));
 }
Numeric