Recursive escape/removal of special characters in variables

Source: Internet
Author: User

Method One: (Loop)

/******************************************************************** Tool Class *************************************** ****
* Description: Depth Plus/delete backslash
Parameters
* &data: Specifies an array of replacements
* Func:addslashes (default) = Add a backslash, stripslashes= remove backslash
*/
public static function &slashesdeep (& $data, $func = ' addslashes ') {
$waitList = Array (& $data); Pending list

do {
$wk = key ($waitList);
$WV = & $waitList [$WK];
Unset ($waitList [$wk]);

if (Is_array ($WV)) {
$result = Array (); Results list
foreach ($wv as $k = & $v) {
$result [$func ($k)] = & $v;
$waitList [] = & $v;
}
$WV = $result;
} else if (is_string ($WV)) {
$WV = $func ($WV);
}
} while (!empty ($waitList));

return $data;
}

Method Two: (Recursive)

/**
* The recursive way to escape special characters in a variable
*
* @access Public
* @param mix $value
*
* @return Mix
*/
function Addslashes_deep ($value)
{
if (empty ($value))
{
return $value;
}
Else
{
Return Is_array ($value)? Array_map (' Addslashes_deep ', $value): Addslashes ($value);
}
}

/**
* Recursive method to remove escape from special characters in variable
*
* @access Public
* @param mix $value
*
* @return Mix
*/
function Stripslashes_deep ($value)
{
if (empty ($value))
{
return $value;
}
Else
{
Return Is_array ($value)? Array_map (' Stripslashes_deep ', $value): Stripslashes ($value);
}
}

Recursive escape/removal of special characters in variables

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.