Home  >  Article  >  Backend Development  >  How to use array_map() function in php? (code example)

How to use array_map() function in php? (code example)

青灯夜游
青灯夜游Original
2018-12-30 11:31:545500browse

The array_map() function is a built-in function in PHP, which can modify all elements in one or more arrays based on user-defined conditions (functions) in a simple way. Let's introduce in detail how to use the array_map() function.

How to use array_map() function in php? (code example)

##array_map() function

array_map() function basically converts each element of the array Send it to a user-defined function for modification or processing, and then return an array with the new value modified by the function.

Basic syntax:

array_map(functionName,arr1,arr2...)

Description:

functionName parameter: required, representing the name of the user-defined function. The array_map() function will pass the value of the array to the function for processing based on the name, and then return.

arr1, arr2... Parameters: required items, representing the array that needs to be modified, which can be one array or multiple arrays.

The functionName parameter is mandatory, we can pass any number of arrays (arr1, arr2...., and so on) to the function for processing.

Usage example of array_map() function

Let’s introduce the use of array_map() function through a simple example

Example 1: Processing values ​​in the array

<?php 
  
function fun1($v) { 
  return ($v + 7);     // 数组中的每个元素值都加7
} 
  
function fun2($v1,$v2) {
//判断两个数组中对应的值是否相等,相等则返回1,不相等则返回0。最后形成一个由1和0组成的数组
    if ($v1 == $v2) return 1;      
    else return 0;   
} 
  
$arr1 = array(1, 2, 3, 4, 5); 
$arr2 = array(1, 3, 3, 4, 8); 
echo "<pre class="brush:php;toolbar:false">"; 
print_r(array_map("fun1", $arr1)); 
  
print_r(array_map("fun2", $arr1, $arr2)); 
echo "
";  ?>

Output:


How to use array_map() function in php? (code example)

Example description:

fun1() can add 7 to the value of each element in the array arr1 and return it.

fun2() determines whether the values ​​in array arr1 and array arr2 are equal. If they are equal, it returns 1, if they are not equal, it returns 0. Finally, an array consisting of 1 and 0 is formed.


Example 2: array_map() function creates nested arrays

<?php 
$a = array(1, 2, 3); 
$b = array("one", "two", "three"); 
  
$result = array_map(null, $a, $b); 
echo "<pre class="brush:php;toolbar:false">";   
print_r($result); 
echo "
";  ?>

In PHP, use the array_map() function to create nested arrays. For this we have to pass null as parameter instead of functionName parameter and array list to create array of arrays.

Output:

How to use array_map() function in php? (code example)

The above is the entire content of this article, I hope it will be helpful to everyone's learning. For more exciting content, you can pay attention to the relevant column tutorials on the PHP Chinese website! ! !

The above is the detailed content of How to use array_map() function in php? (code example). For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn