这个函数的作用是,把数组中的值循环放到回调函数里处理,结果返回一个单一的值.(applies iteratively the callback function to the elements of the array, so as to reduce the array to a single value.) 这个函数需要两个必须参数和一个可选参数.第一个参数是要操作的数组,第二个是回调函数,第三个是初始值(可选). 举个例子,比如 function sum($carry, $item) {…