摘要:排列如果所提供的函数返回的数量等于数组中成员数量的总和,则函数返回,否则返回。平铺数组将数组降为一维数组根据给定的函数对数组的元素进行分组。使用给定的回调筛选数组。相关文章秒的代码片段数学秒的代码片段字符串函数
本文来自GitHub开源项目
点我跳转
30秒的PHP代码片段排列 all</>复制代码
精选的有用PHP片段集合,您可以在30秒或更短的时间内理解这些片段。
如果所提供的函数返回 true 的数量等于数组中成员数量的总和,则函数返回 true,否则返回 false。
</>复制代码
function all($items, $func)
{
return count(array_filter($items, $func)) === count($items);
}
Examples
</>复制代码
all([2, 3, 4, 5], function ($item) {
return $item > 1;
}); // true
any
如果提供的函数对数组中的至少一个元素返回true,则返回true,否则返回false。
</>复制代码
function any($items, $func)
{
return count(array_filter($items, $func)) > 0;
}
Examples
</>复制代码
any([1, 2, 3, 4], function ($item) {
return $item < 2;
}); // true
deepFlatten(深度平铺数组)
将多维数组转为一维数组
</>复制代码
function deepFlatten($items)
{
$result = [];
foreach ($items as $item) {
if (!is_array($item)) {
$result[] = $item;
} else {
$result = array_merge($result, deepFlatten($item));
}
}
return $result;
}
Examples
</>复制代码
deepFlatten([1, [2], [[3], 4], 5]); // [1, 2, 3, 4, 5]
drop
返回一个新数组,并从左侧弹出n个元素。
</>复制代码
function drop($items, $n = 1)
{
return array_slice($items, $n);
}
Examples
</>复制代码
drop([1, 2, 3]); // [2,3]
drop([1, 2, 3], 2); // [3]
findLast
返回所提供的函数为其返回的有效值(即过滤后的值)的最后一个元素的键值(value)。
</>复制代码
function findLast($items, $func)
{
$filteredItems = array_filter($items, $func);
return array_pop($filteredItems);
}
Examples
</>复制代码
findLast([1, 2, 3, 4], function ($n) {
return ($n % 2) === 1;
});
// 3
findLastIndex
返回所提供的函数为其返回的有效值(即过滤后的值)的最后一个元素的键名(key)。
</>复制代码
function findLastIndex($items, $func)
{
$keys = array_keys(array_filter($items, $func));
return array_pop($keys);
}
Examples
</>复制代码
findLastIndex([1, 2, 3, 4], function ($n) {
return ($n % 2) === 1;
});
// 2
flatten(平铺数组)
将数组降为一维数组
</>复制代码
function flatten($items)
{
$result = [];
foreach ($items as $item) {
if (!is_array($item)) {
$result[] = $item;
} else {
$result = array_merge($result, array_values($item));
}
}
return $result;
}
Examples
</>复制代码
flatten([1, [2], 3, 4]); // [1, 2, 3, 4]
groupBy
根据给定的函数对数组的元素进行分组。
</>复制代码
function groupBy($items, $func)
{
$group = [];
foreach ($items as $item) {
if ((!is_string($func) && is_callable($func)) || function_exists($func)) {
$key = call_user_func($func, $item);
$group[$key][] = $item;
} elseif (is_object($item)) {
$group[$item->{$func}][] = $item;
} elseif (isset($item[$func])) {
$group[$item[$func]][] = $item;
}
}
return $group;
}
Examples
</>复制代码
groupBy(["one", "two", "three"], "strlen"); // [3 => ["one", "two"], 5 => ["three"]]
hasDuplicates(查重)
检查数组中的重复值。如果存在重复值,则返回true;如果所有值都是唯一的,则返回false。
</>复制代码
function hasDuplicates($items)
{
return count($items) > count(array_unique($items));
}
Examples
</>复制代码
hasDuplicates([1, 2, 3, 4, 5, 5]); // true
head
返回数组中的第一个元素。
</>复制代码
function head($items)
{
return reset($items);
}
Examples
</>复制代码
head([1, 2, 3]); // 1
last
返回数组中的最后一个元素。
</>复制代码
function last($items)
{
return end($items);
}
Examples
</>复制代码
last([1, 2, 3]); // 3
pluck
检索给定键名的所有键值
</>复制代码
function pluck($items, $key)
{
return array_map( function($item) use ($key) {
return is_object($item) ? $item->$key : $item[$key];
}, $items);
}
Examples
</>复制代码
pluck([
["product_id" => "prod-100", "name" => "Desk"],
["product_id" => "prod-200", "name" => "Chair"],
], "name");
// ["Desk", "Chair"]
pull
修改原始数组以过滤掉指定的值。
</>复制代码
function pull(&$items, ...$params)
{
$items = array_values(array_diff($items, $params));
return $items;
}
Examples
</>复制代码
$items = ["a", "b", "c", "a", "b", "c"];
pull($items, "a", "c"); // $items will be ["b", "b"]
reject
使用给定的回调筛选数组。
</>复制代码
function reject($items, $func)
{
return array_values(array_diff($items, array_filter($items, $func)));
}
Examples
</>复制代码
reject(["Apple", "Pear", "Kiwi", "Banana"], function ($item) {
return strlen($item) > 4;
}); // ["Pear", "Kiwi"]
remove
从给定函数返回false的数组中删除元素。
</>复制代码
function remove($items, $func)
{
$filtered = array_filter($items, $func);
return array_diff_key($items, $filtered);
}
Examples
</>复制代码
remove([1, 2, 3, 4], function ($n) {
return ($n % 2) === 0;
});
// [0 => 1, 2 => 3]
tail
返回数组中的所有元素,第一个元素除外。
</>复制代码
function tail($items)
{
return count($items) > 1 ? array_slice($items, 1) : $items;
}
Examples
</>复制代码
tail([1, 2, 3]); // [2, 3]
take
返回一个数组,其中从开头删除了n个元素。
</>复制代码
function take($items, $n = 1)
{
return array_slice($items, 0, $n);
}
Examples
</>复制代码
take([1, 2, 3], 5); // [1, 2, 3]
take([1, 2, 3, 4, 5], 2); // [1, 2]
without
筛选出给定值之外的数组元素。
</>复制代码
function without($items, ...$params)
{
return array_values(array_diff($items, $params));
}
Examples
</>复制代码
without([2, 1, 2, 3, 5, 8], 1, 2, 8); // [3, 5]
orderBy
按键名对数组或对象的集合进行排序。
</>复制代码
function orderBy($items, $attr, $order)
{
$sortedItems = [];
foreach ($items as $item) {
$key = is_object($item) ? $item->{$attr} : $item[$attr];
$sortedItems[$key] = $item;
}
if ($order === "desc") {
krsort($sortedItems);
} else {
ksort($sortedItems);
}
return array_values($sortedItems);
}
Examples
</>复制代码
orderBy(
[
["id" => 2, "name" => "Joy"],
["id" => 3, "name" => "Khaja"],
["id" => 1, "name" => "Raja"]
],
"id",
"desc"
); // [["id" => 3, "name" => "Khaja"], ["id" => 2, "name" => "Joy"], ["id" => 1, "name" => "Raja"]]
相关文章:
30秒的PHP代码片段(2)数学 - Math
30秒的PHP代码片段(3)字符串-String & 函数-Function
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/30083.html
摘要:本文来自开源项目点我跳转秒的代码片段精选的有用片段集合,您可以在秒或更短的时间内理解这些片段。检查提供的整数是否是素数。约等于检查两个数字是否近似相等。否则,返回该范围内最近的数字。相关文章秒的代码片段数组秒的代码片段字符串函数 本文来自GitHub开源项目 点我跳转 30秒的PHP代码片段 showImg(https://segmentfault.com/img/bVbnR1I?w=...
摘要:返回给定字符串中的元音数。使用正则表达式来计算字符串中元音的数量。对字符串的第一个字母进行无头化,然后将其与字符串的其他部分相加。使用查找字符串中第一个出现的子字符串的位置。相关文章秒的代码片段数组秒的代码片段数学 本文来自GitHub开源项目 点我跳转 30秒的PHP代码片段 showImg(https://segmentfault.com/img/bVbnR1I?w=2800&h=...
摘要:混合使用计算时分秒本文出自从零到壹全栈部落作者黎跃春追时间的人简介是推出的一个天挑战。完整中文版指南及视频教程在从零到壹全栈部落。效果图第天挑战的内容主要是如何将一系列的加起来,最终计算总时间,总时间用时分秒显示。 Day18 - Reduce、Map混合使用计算时分秒 本文出自:从零到壹全栈部落作者:©黎跃春-追时间的人 简介:JavaScript30 是 Wes Bos 推出的一个...
摘要:而这个秒就能理解的代码片段,摒弃了许多不必要的代码,只实现了最核心的部分,不像和那样,考虑参数边界值问题,例如,参数的类型是否符合预期等。使用根据断言函数对数组进行过滤,返回条件为真值的对象。 之前翻译过一篇文章,《我喜欢的5个编程技巧》,里面的一个技巧是借鉴一个网站的代码片段,好奇的小手点下链接后,发现是一个有 47000 多star的仓库,30-seconds-of-code。 仓...
摘要:使用闭包实现私有变量译者添加未在构造函数中初始化的属性在语句结尾处使用分号在语句结尾处使用分号是一个很好的实践。总结我知道还有很多其他的技巧,窍门和最佳实践,所以如果你有其他想要添加或者对我分享的这些有反馈或者纠正,请在评论中指出。 showImg(http://segmentfault.com/img/bVbJnR); 如你所知,JavaScript是世界上第一的编程语言(编者注:2...
阅读 2251·2021-09-06 15:02
阅读 1883·2021-08-13 15:02
阅读 2441·2019-08-29 14:14
阅读 1529·2019-08-26 13:55
阅读 638·2019-08-26 13:46
阅读 3487·2019-08-26 11:41
阅读 631·2019-08-26 10:27
阅读 3374·2019-08-23 15:28