uri_escapeuri_escape
Given a URI as the first parameter, returns the equivalent URI with certain characters
replaced with % followed by two hexadecimal digits. The first parameter can be a
text string, like "http://www.oreilly.com", or an object of type URI::URL. When
invoked without a second parameter, This code escapes all lowercase vowels in$escaped_uri = uri_escape($uri, 'aeiou')
$uri
and returns the escaped version.
|
|