芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/fmd/vendor/respect/validation/library/Rules/FilterVar.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; use Respect\Validation\Exceptions\ComponentException; class FilterVar extends Callback { public function __construct() { $arguments = func_get_args(); if (!isset($arguments[0])) { throw new ComponentException('Cannot validate without filter flag'); } if (!$this->isValidFilter($arguments[0])) { throw new ComponentException('Cannot accept the given filter'); } $this->callback = 'filter_var'; $this->arguments = $arguments; } private function isValidFilter($filter) { return in_array( $filter, [ FILTER_VALIDATE_BOOLEAN, FILTER_VALIDATE_EMAIL, FILTER_VALIDATE_FLOAT, FILTER_VALIDATE_INT, FILTER_VALIDATE_IP, FILTER_VALIDATE_REGEXP, FILTER_VALIDATE_URL, ] ); } }