Caution: The documentation you are viewing is
for an older version of Zend Framework.
You can find the documentation of the current version at:
https://docs.zendframework.com/zend-validator/
Uri Validator — Zend Framework 2 2.4.9 documentation
Zend\Validator\Uri allows you to validate a uri using the Zend\Uri\Uri handler to parse to uri. The validator allows for both validation of absolute and/or relative uris. There is the possibility to exchange the handler for another one in case the parsing of the uri should be done differently.
The following options are supported for Zend\Validator\Uri:
A basic example of usage is below:
1 2 3 4 5 6 7 8 | $validator = new Zend\Validator\Uri();
$uri = 'http://framework.zend.com/manual';
if ($validator->isValid($uri)) {
// $uri was valid
} else {
// false. You can use $validator->getMessages() to retrieve error messages
}
|