Validators/Url.php
Go to the documentation of this file.
1<?php
8
12class Url extends Validator
13{
21 public function validate($url, $parameters = array())
22 {
23 return (bool) filter_var($url, FILTER_VALIDATE_URL);
24 }
25}
default validator for url input elements
validate($url, $parameters=array())
url validator
Validators for HTML input-elements.