Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php namespace SimpleValidator\Validators; class Length extends Base { private $min..

Decoded Output download

<?php

namespace SimpleValidator\Validators;

class Length extends Base
{
    private $min;
    private $max;

    public function __construct($field, $error_message, $min, $max)
    {
        parent::__construct($field, $error_message);
        $this->min = $min;
        $this->max = $max;
    }

    public function execute(array $data)
    {
        if ($this->isFieldNotEmpty($data)) {
            $length = mb_strlen($data[$this->field], 'UTF-8');
            return $length >= $this->min && $length <= $this->max;
        }

        return true;
    }
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace SimpleValidator\Validators;

class Length extends Base
{
    private $min;
    private $max;

    public function __construct($field, $error_message, $min, $max)
    {
        parent::__construct($field, $error_message);
        $this->min = $min;
        $this->max = $max;
    }

    public function execute(array $data)
    {
        if ($this->isFieldNotEmpty($data)) {
            $length = mb_strlen($data[$this->field], 'UTF-8');
            return $length >= $this->min && $length <= $this->max;
        }

        return true;
    }
}

Function Calls

None

Variables

None

Stats

MD5 4ddc03f0645242713618e7f5216b907d
Eval Count 0
Decode Time 90 ms