辅助函数
简介
Laravel 包含一些多样化的 PHP 辅助函数函数。许多在 Laravel 自身框架中使用;如果你觉得实用,也可以在你应用当中使用。
可用方法
数组
array_add array_collapse array_divide array_dot array_except array_first array_flatten array_forget array_get array_has array_only array_pluck array_pull array_set array_sort array_sort_recursive array_where head last
Paths
app_path base_path config_path database_path elixir public_path resource_path storage_path
Strings
camel_case class_basename e ends_with snake_case str_limit starts_with str_contains str_finish str_is str_plural str_random str_singular str_slug studly_case trans trans_choice
URLs
action asset secure_asset route url
Miscellaneous
auth back bcrypt collect config csrf_field csrf_token dd dispatch env event factory method_field old redirect request response session value view with
方法列表
数组
array_add()
如果指定的键不存在于该数组,array_add
函数便会将指定的键值对加到数组中:
$array = array_add(['name' => 'Desk'], 'price', 100);
// ['name' => 'Desk', 'price' => 100]
array_collapse()
array_collapse
函数将数组的每一个数组折成单个数组:
$array = array_collapse([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
// [1, 2, 3, 4, 5, 6, 7, 8, 9]
array_divide()
array_divide
函数返回两个数组,一个包含原本数组的键,另一个包含原本数组的值:
list($keys, $values) = array_divide(['name' => 'Desk']);
// $keys: ['name']
// $values: ['Desk']
array_dot()
array_dot
函数把多维数组扁平化成一维数组,并用「点」式语法表示深度:
$array = array_dot(['foo' => ['bar' => 'baz']]);
// ['foo.bar' => 'baz'];
array_except()
array_except
函数从数组移除指定的键值对:
$array = ['name' => 'Desk', 'price' => 100];
$array = array_except($array, ['price']);
// ['name' => 'Desk']
array_first()
array_first
函数返回数组中第一个通过测试的元素:
$array = [100, 200, 300];
$value = array_first($array, function ($key, $value) {
return $value >= 150;
});
// 200
可传递第三个参数作为默认值。当没有任何数值通过测试时将返回该数值:
$value = array_first($array, $callback, $default);
array_flatten()
array_flatten
函数将多维数组扁平化成一维。
$array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']];
$array = array_flatten($array);
// ['Joe', 'PHP', 'Ruby'];
array_forget()
array_forget
函数以「点」式语法从深度嵌套数组中移除指定的键值对:
$array = ['products' => ['desk' => ['price' => 100]]];
array_forget($array, 'products.desk');
// ['products' => []]
array_get()
array_get
函数使用「点」式语法从深度嵌套数组中取回指定的值:
$array = ['products' => ['desk' => ['price' => 100]]];
$value = array_get($array, 'products.desk');
// ['price' => 100]
array_get
函数同样接受默认值,当指定的键找不到时返回:
$value = array_get($array, 'names.john', 'default');
array_has()
array_has
函数使用「点」式语法检查指定的项目是否存在于数组中:
$array = ['products' => ['desk' => ['price' => 100]]];
$hasDesk = array_has($array, ['products.desk']);
// true
array_only()
array_only
函数从数组返回指定的键值对:
$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];
$array = array_only($array, ['name', 'price']);
// ['name' => 'Desk', 'price' => 100]
array_pluck()
array_pluck
函数从数组拉出一列指定的键值对:
$array = [
['developer' => ['id' => 1, 'name' => 'Taylor']],
['developer' => ['id' => 2, 'name' => 'Abigail']],
];
$array = array_pluck($array, 'developer.name');
// ['Taylor', 'Abigail'];
你也能指定要以什么作为结果列的键值:
$array = array_pluck($array, 'developer.name', 'developer.id');
// [1 => 'Taylor', 2 => 'Abigail'];
array_pull()
array_pull
函数从数组移除并返回指定的键值对:
$array = ['name' => 'Desk', 'price' => 100];
$name = array_pull($array, 'name');
// $name: Desk
// $array: ['price' => 100]
array_set()
array_set
函数使用「点」式语法在深度嵌套数组中写入值:
$array = ['products' => ['desk' => ['price' => 100]]];
array_set($array, 'products.desk.price', 200);
// ['products' => ['desk' => ['price' => 200]]]
array_sort()
array_sort
函数借助指定闭包结果排序数组:
$array = [
['name' => 'Desk'],
['name' => 'Chair'],
];
$array = array_values(array_sort($array, function ($value) {
return $value['name'];
}));
/*
[
['name' => 'Chair'],
['name' => 'Desk'],
]
*/
array_sort_recursive()
array_sort_recursive
函数使用 sort
函数递归排序数组:
$array = [
[
'Roman',
'Taylor',
'Li',
],
[
'PHP',
'Ruby',
'JavaScript',
],
];
$array = array_sort_recursive($array);
/*
[
[
'Li',
'Roman',
'Taylor',
],
[
'JavaScript',
'PHP',
'Ruby',
]
];
*/
array_where()
array_where
函数使用指定的闭包过滤数组:
$array = [100, '200', 300, '400', 500];
$array = array_where($array, function ($key, $value) {
return is_string($value);
});
// [1 => 200, 3 => 400]
head()
head
函数返回指定数组的第一个元素:
$array = [100, 200, 300];
$first = head($array);
// 100
last()
last
函数返回指定数组的最后一个元素:
$array = [100, 200, 300];
$last = last($array);
// 300
路径
app_path()
app_path
函数获取 app
文件夹的完整路径:
$path = app_path();
你同样可以使用 app_path
函数生成针对指定文件相对于 app 目录的完整路径:
$path = app_path('Http/Controllers/Controller.php');