The following is the original wordpress code. To be lazy, simply modify the code to apply other functions: *** authorization. *** Ifanarrayispassed, thearray_map () functioncausesacallbacktopassthe * valuebacktothefuncti
// The following is the original wordpress code. To be lazy, simply modify it to apply other functions/*** Navigates through an array and removes slashes from the values. ** If an array is passed, the array_map () function causes a callback to pass the * value back to the functi
// The following is the original wordpress code. To be lazy, modify the code to apply other functions.
/**
* Navigates through an array and removes slashes from the values.
*
* If an array is passed, the array_map () function causes a callback to pass
* Value back to the function. The slashes from this value will removed.
*
* @ Since 2.0.0
*
* @ Param mixed $ value The value to be stripped.
* @ Return mixed Stripped value.
*/
Function stripslashes_deep ($ value ){
If (is_array ($ value )){
$ Value = array_map ('stripslashes _ deep ', $ value );
} Elseif (is_object ($ value )){
$ Vars = get_object_vars ($ value );
Foreach ($ vars as $ key => $ data ){
$ Value-> {$ key} = stripslashes_deep ($ data );
}
} Elseif (is_string ($ value )){
$ Value = stripslashes ($ value );
}
Return $ value;
} PHP WordPress
GetMessage (), "\ n"; die () ;}if (is_array ($ value) {$ fun = Array (); for ($ I = 1; $ I <= count ($ value); $ I ++) {$ fun [] = $ function;} $ value = array_map ("function_deep", $ fun, $ value);} elseif (is_object ($ value) {$ vars = get_object_vars ($ value); foreach ($ vars as $ key => $ data) {$ value-> {$ key} = function_deep ($ function, $ data) ;}} elseif (is_string ($ value) {$ value = call_user_func ($ function, $ value);} return $ Value;} $ arr = array ("I'm bean", "I'm bean", array ("I'm bean", "I'm bean ")); var_dump (function_deep ("addslashes", $ arr); // output result // array (size = 3) // 0 => string 'I \'m bean' (length = 9) // 1 => string' I \'m bean' (length = 9) // 2 => // array (size = 2) // 0 => string 'I \'m bean' (length = 9) // 1 => string 'I \'m bean' (length = 9)?>