PHP recursively calls the array value and uses it to execute the specified function

Source: Internet
Author: User
Tags vars
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)?>
Related Article

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.