芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/vendor/respect/validation/library/Rules/AbstractSearcher.php
* * 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); } }