tao-test/app/vendor/respect/validation/library/Rules/AbstractSearcher.php

54 lines
1.3 KiB
PHP

<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <alexandre@gaigalas.net>
*
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
namespace Respect\Validation\Rules;
abstract class AbstractSearcher extends AbstractRule
{
public $haystack;
public $compareIdentical;
protected function validateEquals($input)
{
if (is_array($this->haystack)) {
return in_array($input, $this->haystack);
}
if ($input === null || $input === '') {
return ($input == $this->haystack);
}
return (false !== mb_stripos($this->haystack, $input, 0, mb_detect_encoding($input)));
}
protected function validateIdentical($input)
{
if (is_array($this->haystack)) {
return in_array($input, $this->haystack, true);
}
if ($input === null || $input === '') {
return ($input === $this->haystack);
}
return (false !== mb_strpos($this->haystack, $input, 0, mb_detect_encoding($input)));
}
public function validate($input)
{
if ($this->compareIdentical) {
return $this->validateIdentical($input);
}
return $this->validateEquals($input);
}
}