Function __global->cms_urldecode_post_process
Definitions
sources/urls.php
- Decode a URL component that was encoded with cms_urlencode.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $url_part | URLPATH | No | No | required parameter | N/A | N/A | The URL to encode |
Returns
- The encoded result
- Type: URLPATH
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Decode a URL component that was encoded with cms_urlencode.
*
* @param URLPATH $url_part The URL to encode
* @return URLPATH The encoded result
*/
function cms_urldecode_post_process(string $url_part) : string
* Decode a URL component that was encoded with cms_urlencode.
*
* @param URLPATH $url_part The URL to encode
* @return URLPATH The encoded result
*/
function cms_urldecode_post_process(string $url_part) : string

