Function stripslashes__recursive
Remove slashes recursively. Uses two underscores to guard against overloading. What it does: - removes slashes, recursively, from the array or string var. - effects both keys and values of arrays. - calls itself recursively to handle arrays of 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 strip slashes from |
integer |
$level = 0 |
= 0 What level we're at within the array (if called recursively) |
array|string
|
The string or array of strings with slashes stripped |