主頁(yè) > 知識(shí)庫(kù) > php函數(shù)式編程簡(jiǎn)單示例

php函數(shù)式編程簡(jiǎn)單示例

熱門(mén)標(biāo)簽:廣州防封卡外呼系統(tǒng)多少錢(qián)一個(gè)月 哪里辦理400電話 高德地圖標(biāo)注家 怎么向銷(xiāo)售公司推銷(xiāo)外呼系統(tǒng) 長(zhǎng)春人工外呼系統(tǒng)服務(wù)商 廣東地市地圖標(biāo)注 仁和怎么申請(qǐng)400開(kāi)頭的電話 外呼系統(tǒng)撥打暫時(shí)無(wú)法接通 江西手機(jī)自動(dòng)外呼防封系統(tǒng)是什么

本文實(shí)例講述了php函數(shù)式編程。分享給大家供大家參考,具體如下:

// 函數(shù)式編程
$users = array(
  array('id' => 1, 'name' => 'abc1', 'age' => 29, '性別' => '男'),
  array('id' => 2, 'name' => 'abc2', 'age' => 21, '性別' => '女'),
  array('id' => 3, 'name' => 'abc3', 'age' => 23, '性別' => '男'),
  array('id' => 4, 'name' => 'abc4', 'age' => 25, '性別' => '女'),
  array('id' => 5, 'name' => 'abc5', 'age' => 20, '性別' => '女'),
  array('id' => 6, 'name' => 'abc6', 'age' => 24, '性別' => '男'),
  array('id' => 7, 'name' => 'abc7', 'age' => 28, '性別' => '女'),
  array('id' => 8, 'name' => 'abc8', 'age' => 27, '性別' => '男'),
);
//獲取性別為女的用戶(hù)
$arrayFilter = array_filter($users, function($item){
  return $item['性別'] == '女' ;
});
// 不影響原數(shù)組,返回一個(gè)新數(shù)組
$arrayMap = array_map(function($item){
  return array(
    'id' => $item['id'],
    'name' => $item['name'],
    'age' => $item['age'],
    'gender' => $item['性別'] == '男' ? 'male' : 'female',
  );
}, $users);
// 修改原數(shù)組,對(duì)年齡+10處理,同時(shí)新增索引gender,返回值 1 或 0
array_walk($users, function($item, $index){
  $item['gender'] = $item['性別'] == '男' ? 'male' : 'female';
  if ($index % 2 == 0) {
    $item['age'] += 10;
  }
});
//array_reduce(array $input , callable $function [,$initial = NULL ]) 用回調(diào)函數(shù)迭代地將數(shù)組簡(jiǎn)化為單一的值
// 求最大年齡的用戶(hù),返回最大年齡用戶(hù)信息
$arrayReduce = array_reduce($users, function($init, $val){
  return $init['age'] > $val['age'] ? $init : $val;
}, array('age' => 0));
// 求平均年齡
$avgAge = array_reduce($users, function($init, $item){
  return $init + $item['age'];
}, 0) / count($users);
/*
 * array_reduce 的內(nèi)部實(shí)現(xiàn)方式
function array_reduce($data, $callback, $initial) {
  foreach ($data as $index => $val) {
    $initial = $callback($initial, $val);
  }
  return $initial;
}
*/
//用array_map和array_mutisort來(lái)排序 
//利用array_map獲取要依據(jù)排序的數(shù)組,(匿名函數(shù) create_function($args, return $val))
//$arrField = array_map(create_function('$item', 'return $item["age"];'), $users); 【不推薦】
$arrField = array_map(function($item){
  return $item['age'];
}, $users);
//利用array_mutisort來(lái)進(jìn)行年齡從大到小排序
$arrSort = array_multisort($arrField, SORT_DESC, $users);

//閉包實(shí)現(xiàn)計(jì)數(shù)器
function counts() {
  $a = 1;
  // 閉包,引用變量$a
  return function() use($a) {
    return $a++;
  };
}
$countFunc = counts();
echo $countFunc(); // 1
echo $countFunc(); // 2
echo $countFunc(); // 3
echo $countFunc(); // 4

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專(zhuān)題:《php常用函數(shù)與技巧總結(jié)》、《php字符串(string)用法總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語(yǔ)法入門(mén)教程》、《php+mysql數(shù)據(jù)庫(kù)操作入門(mén)教程》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》

希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • JDK12的新特性之teeing collectors
  • 淺析JDK12的五大重要新特性(推薦)
  • JDK12的新特性之CompactNumberFormat詳解
  • 在windows環(huán)境下安裝jdk8、jdk9、jdk11、jdk12并自由切換
  • JDK14之jpackage打包命令的使用
  • Python中的函數(shù)式編程:不可變的數(shù)據(jù)結(jié)構(gòu)
  • SpringBoot2使用WebFlux函數(shù)式編程的方法
  • JDK都出到14了,你有什么理由不會(huì)函數(shù)式編程(推薦)

標(biāo)簽:文山 海北 廈門(mén) 湘西 梅河口 黔東 濮陽(yáng) 惠州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《php函數(shù)式編程簡(jiǎn)單示例》,本文關(guān)鍵詞  php,函,數(shù)式,編程,簡(jiǎn)單,示例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《php函數(shù)式編程簡(jiǎn)單示例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于php函數(shù)式編程簡(jiǎn)單示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章