mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 15:25:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
41 lines
1,018 B
PHP
41 lines
1,018 B
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
class Contains extends AbstractRule
|
|
{
|
|
public $containsValue;
|
|
public $identical;
|
|
|
|
public function __construct($containsValue, $identical = false)
|
|
{
|
|
$this->containsValue = $containsValue;
|
|
$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 in_array($this->containsValue, $input);
|
|
}
|
|
|
|
return false !== mb_stripos($input, $this->containsValue, 0, mb_detect_encoding($input));
|
|
}
|
|
|
|
protected function validateIdentical($input)
|
|
{
|
|
if (is_array($input)) {
|
|
return in_array($this->containsValue, $input, true);
|
|
}
|
|
|
|
return false !== mb_strpos($input, $this->containsValue, 0, mb_detect_encoding($input));
|
|
}
|
|
}
|