PHP recursively calls the array value and uses it to execute the specified function. recursive array _ PHP Tutorial

Source: Internet
Author: User
Tags vars
PHP recursively calls the array value and uses it to execute the specified function, recursively returning the array. PHP recursively calls the array value and uses it to execute the specified function. This document describes how PHP recursively calls the array value and uses it to execute the specified function. We will share with you how PHP recursively calls the array value and uses it to execute the specified function. recursive array

This example describes how PHP recursively calls an array value and uses it to execute a specified function. Share it with you for your reference. The specific analysis is as follows:

The following is the original wordpress code. to be lazy, 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 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;}

The code is as follows:

<? Php function function_deep ($ function, $ value) {try {if (! Function_exists ($ function) {$ error = '"'. $ function. '"is undefined'; throw new Exception ($ error) ;}} catch (Exception $ e) {echo 'caught exception: ', $ e-> 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)?>

I hope this article will help you with php programming.

In this example, PHP recursively calls the array value and uses it to execute the specified function. Share it with you...

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.