| 5 common.inc | valid_url($url, $absolute = FALSE) |
| 6 common.inc | valid_url($url, $absolute = FALSE) |
| 7 common.inc | valid_url($url, $absolute = FALSE) |
| 8 common.inc | valid_url($url, $absolute = FALSE) |
Verify the syntax of the given URL.
This function should only be used on actual URLs. It should not be used for Drupal menu paths, which can contain arbitrary characters. Valid values per RFC 3986.
Parameters
$url: The URL to verify.
$absolute: Whether the URL is absolute (beginning with a scheme such as "http:").
Return value
TRUE if the URL is in a valid format.
Related topics
3 calls to valid_url()
File
- includes/
common.inc, line 1023 - Common functions that many Drupal modules will need to reference.
Code
function valid_url($url, $absolute = FALSE) {
if ($absolute) {
return (bool) preg_match("
/^ # Start at the beginning of the text
(?:ftp|https?|feed):\/\/ # Look for ftp, http, https or feed schemes
(?: # Userinfo (optional) which is typically
(?:(?:[\w\.\-\+!$&'\(\)*\+,;=]|%[0-9a-f]{2})+:)* # a username or a username and password
(?:[\w\.\-\+%!$&'\(\)*\+,;=]|%[0-9a-f]{2})+@ # combination
)?
(?:
(?:[a-z0-9\-\.]|%[0-9a-f]{2})+ # A domain name or a IPv4 address
|(?:\[(?:[0-9a-f]{0,4}:)*(?:[0-9a-f]{0,4})\]) # or a well formed IPv6 address
)
(?::[0-9]+)? # Server port number (optional)
(?:[\/|\?]
(?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2}) # The path and query (optional)
*)?
$/xi", $url);
}
else {
return (bool) preg_match("/^(?:[\w#!:\.\?\+=&@$'~*,;\/\(\)\[\]\-]|%[0-9a-f]{2})+$/i", $url);
}
}
Login or register to post comments
Comments
---
URLs that contain characters with a code not included in the ASCII set are always reported to be not valid. In this case, pass the URL to drupal_urlencode() before.
idn_to_ascii
The spec is specific to ascii text. PHP 5.3 (and in PECL before that) has idn_to_ascii() which can do the conversion before passing through to valid_url.
surely rather than parsing
surely rather than parsing unicode into ascii this function should be modified to accept unicode given that it is now allowed to have non ascii urls.