Function urldecode__recursive
Removes url stuff from the array/variable. Uses two underscores to guard against overloading. What it does: - takes off url encoding (%20, etc.) from the array or string var. - importantly, does it to keys too! - calls itself recursively if there are any sub arrays.
Package: SMF
Copyright: 2020 Simple Machines and individual contributors
License: BSD
Author: Simple Machines https://www.simplemachines.org
Located at Sources/QueryString.php
Copyright: 2020 Simple Machines and individual contributors
License: BSD
Author: Simple Machines https://www.simplemachines.org
Located at Sources/QueryString.php
array|string |
$var |
The string or array of strings to decode |
integer |
$level = 0 |
Which level we're at within the array (if called recursively) |
array|string
|
The decoded string or array of decoded strings |