php-Arrays函数-array_map-将回调函数作用到给定数组的单元上_PHP教程

WBOY
Release: 2016-07-13 17:51:17
Original
1219 people have browsed it

array_map() 将回调函数作用到给定的数组单元上

【功能】
该函数将返回一个数组,
该数组包含了所有在array1中的所有单元经过callback作用过之后的单元。
callback回调函数接收的参数数目应该和传递给array_map()函数的数组数目一致。
【使用范围】
php4>4.0.6、php5.
【使用】
array array_map( callback callback,array arr1[,array...] )
callback/必需/为用户提供的作为比较标准的回调函数
arr1/必需/作比较的数组
array.../可选/作比较的数组
【示例】
[php]
//定义回调函数
function cube($n){
return ($n*$n*$n);
}
$a=array(1,2,3,4,5);
$b=array_map("cube",$a);
var_dump($b);
/*
array(5) {
[0]=>
int(1)
[1]=>
int(8)
[2]=>
int(27)
[3]=>
int(64)
[4]=>
int(125)
}
*/


摘自 zuodefeng的笔记

www.bkjia.com true http://www.bkjia.com/PHPjc/478214.html TechArticle array_map() 将回调函数作用到给定的数组单元上 【功能】 该函数将返回一个数组, 该数组包含了所有在array1中的所有单元经过callback作用过...
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!