Laravel 的辅助函数列表
简介
Laravel 包含有各种各样的 PHP 辅助函数,许多都是在 Laravel 自身框架中使用到。如果你觉得实用,也可以在你自己的应用中使用它们。
可用方法
数组
array_add array_collapse array_divide array_dot array_except array_first array_flatten array_forget array_get array_has array_last array_only array_pluck array_prepend array_pull array_set array_sort array_sort_recursive array_where head last
路径
app_path base_path config_path database_path mix public_path resource_path storage_path
字符串
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 title_case trans trans_choice
URLs
action asset secure_asset secure_url route url
其他
abort abort_if abort_unless auth back bcrypt cache collect config csrf_field csrf_token dd dispatch env event factory info logger method_field old redirect request response retry session value view
方法列表
数组
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 ($value, $key) {
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 = ['product' => ['name' => 'desk', 'price' => 100]];
$hasItem = array_has($array, 'product.name');
// true
$hasItems = array_has($array, ['product.price', 'product.discount']);
// false
array_last()
array_last
函数返回数组中最后一个通过指定测试的元素:
$array = [100, 200, 300, 110];
$value = array_last($array, function ($value, $key) {
return $value >= 150;
});
// 300
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_prepend()
array_prepend
函数将元素加到数组的头部:
$array = ['one', 'two', 'three', 'four'];
$array = array_prepend($array, 'zero');
// $array: ['zero', 'one', 'two', 'three', 'four']
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 ($value, $key) {
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
文件夹的完整路径。你也可以使用 app_path
函数生成针对指定文件相对于 app 目录的完整路径:
$path = app_path();
$path = app_path('Http/Controllers/Controller.php');
base_path()
base_path
函数返回项目根目录的完整路径。你也可以使用 base_path
函数生成针对指定文件相对于项目根目录的完整路径:
$path = base_path();
$path = base_path('vendor/bin');
config_path()
config_path
函数返回 config
目录的完整路径:
$path = config_path();
database_path()
database_path
函数返回 database
目录的完整路径:
$path = database_path();
mix()
mix
函数获取带有版本号的 mix 文件:
mix($file);
public_path()
public_path
函数返回 public
目录的完整路径:
$path = public_path();
resource_path()
resource_path
函数返回 resources
目录的完整路径。你也可以使用 resource_path
函数生成针对指定文件相对于 resources
目录的完整路径:
$path = resource_path();
$path = resource_path('assets/sass/app.scss');
storage_path()
storage_path
函数返回 storage
目录的完整路径。你也可以使用 storage_path
函数生成针对指定文件相对于 storage
目录的完整路径:
$path = storage_path();
$path = storage_path('app/file.txt');
字符串
camel_case()
camel_case
函数将指定的字符串转换成 驼峰式命名
:
$camel = camel_case('foo_bar');
// fooBar
class_basename()
class_basename
函数返回不包含命名空间的类名称:
$class = class_basename('Foo\Bar\Baz');
// Baz
e()
e
函数对指定字符串进行 htmlentities
:
echo e('<html>foo</html>');
// <html>foo</html>
ends_with()
ends_with
函数判断指定字符串结尾是否为指定内容:
$value = ends_with('This is my name', 'name');
// true