博客列表 >数组函数中5个小案例

数组函数中5个小案例

啊℃。㏄
啊℃。㏄原创
2022年04月23日 08:12:42447浏览

数组函数

array_chunk:一个数组分成多个

  1. // array_chunk():将一个数组分成多个
  2. $arr = [10,20,30,40,50];
  3. // array_chunk(数组,长度)
  4. $res = array_chunk($arr,2);
  5. printf('<pre>%s</pre>',print_r($res,true));

效果:

array_combine:创建新数组

  1. // array_combine():创建新数组,第一个值为键名,第二个值为 值
  2. $a = ['red','green','blue'];
  3. $b = ['abc','def','ghi'];
  4. $c = array_combine($a,$b);
  5. printf('<pre>%s</pre>',print_r($c,true));

效果:

array_count_values:统计数组的所有值

  1. // array_count_values():统计数组中所有的值
  2. // 报错:如果数组的类型不是字符串或者整数会有个警告
  3. $arr = ['hello',1,1,1,'hello','22'];
  4. $res = array_count_values($arr);
  5. printf('<pre>%s</pre>',print_r($res,true));

效果:

array_flip:交换数组中的键和值

  1. // array_flip():交换数组中的键和值
  2. $arr = [2,3,4];
  3. $res = array_flip($arr);
  4. printf('<pre>%s</pre>',print_r($res,true));
  5. echo '<hr>';
  6. $arr = ['a'=>1,'b'=>2,'c'=>3];
  7. $res = array_flip($arr);
  8. printf('<pre>%s</pre>',print_r($res,true));

效果:

array_intersect_assoc:带索引检查计算数组的交集

  1. // array_intersect_assoc():带索引检查计算数组的交集
  2. $a = ['a'=>'blue','b'=>'green','red','yellow'];
  3. $b = ['a'=>'blue','c'=>'green','red','pink'];
  4. $res = array_intersect_assoc($a,$b);
  5. printf('<pre>%s</pre>',print_r($res,true));

效果:

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议