Function htmlspecialchars__recursive
Adds html entities to the array/variable. Uses two underscores to guard against overloading. What it does: - adds entities (", <, >) to the array or string var. - importantly, does not effect keys, only values. - calls itself recursively if necessary.
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 add entites to |
integer |
$level = 0 |
Which level we're at within the array (if called recursively) |
array|string
|
The string or array of strings with entities added |