respect-validation/library/Rules/StartsWith.php
Henrique Moody da193b75e0 Use PSR-2 standard
Most changes was made by php-cs-fixer.
Also removes unused `RecursiveTreeIterator` class.
2015-01-08 00:44:12 -02:00

41 lines
981 B
PHP

<?php
namespace Respect\Validation\Rules;
class StartsWith extends AbstractRule
{
public $startValue;
public $identical;
public function __construct($startValue, $identical = false)
{
$this->startValue = $startValue;
$this->identical = $identical;
}
public function validate($input)
{
if ($this->identical) {
return $this->validateIdentical($input);
}
return $this->validateEquals($input);
}
protected function validateEquals($input)
{
if (is_array($input)) {
return reset($input) == $this->startValue;
}
return 0 === mb_stripos($input, $this->startValue, 0, mb_detect_encoding($input));
}
protected function validateIdentical($input)
{
if (is_array($input)) {
return reset($input) === $this->startValue;
}
return 0 === mb_strpos($input, $this->startValue, 0, mb_detect_encoding($input));
}
}