Table of Contents
1、简介
2、 数组函数
array_add()
array_collapse()
array_divide()
array_dot()
array_except()
array_first()
array_flatten()
array_forget()
array_get()
array_only()
array_pluck()
array_prepend()
array_pull()
array_set()
array_sort()
array_sort_recursive()
array_where()
head()
last()
3、 路径函数
app_path()
base_path()
config_path()
database_path()
elixir()
public_path()
storage_path()
4、 字符串函数
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()
5、URL函数
action()
asset()
secure_asset()
route()
url()
6、其它函数
auth()
back()
bcrypt()
collect()
config()
csrf_field()
csrf_token()
dd()
dispatch()
env()
event()
factory()
method_field()
old()
redirect()
request()
response()
session()
value()
view()
with()
Home Backend Development PHP Tutorial [ Laravel 5.2 文档 ] 服务 -- 辅助函数

[ Laravel 5.2 文档 ] 服务 -- 辅助函数

Jun 23, 2016 pm 01:17 PM

1、简介

Laravel自带了一系列 PHP 辅助函数,很多被框架自身使用,如果你觉得方便的话也可以在代码中使用它们。

2、 数组函数

array_add()

array_add函数添加给定键值对到数组,如果给定键不存在的话:

$array = array_add(['name' => 'Desk'], 'price', 100);// ['name' => 'Desk', 'price' => 100]
Copy after login

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]
Copy after login

array_divide()

array_divide函数返回两个数组,一个包含原数组的所有键,另外一个包含原数组的所有值:

list($keys, $values) = array_divide(['name' => 'Desk']);// $keys: ['name']// $values: ['Desk']
Copy after login

array_dot()

array_dot函数使用”.”号将将多维数组转化为一维数组:

$array = array_dot(['foo' => ['bar' => 'baz']]);// ['foo.bar' => 'baz'];
Copy after login

array_except()

array_except方法从数组中移除给定键值对:

$array = ['name' => 'Desk', 'price' => 100];$array = array_except($array, ['price']);// ['name' => 'Desk']
Copy after login

array_first()

array_first方法返回通过测试数组的第一个元素:

$array = [100, 200, 300];$value = array_first($array, function ($key, $value) {    return $value >= 150;});// 200
Copy after login

默认值可以作为第三个参数传递给该方法,如果没有值通过测试的话返回默认值:

$value = array_first($array, $callback, $default);
Copy after login

array_flatten()

array_flatten方法将多维数组转化为一维数组:

$array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']];$array = array_flatten($array);// ['Joe', 'PHP', 'Ruby'];
Copy after login

array_forget()

array_forget方法使用”.”号从嵌套数组中移除给定键值对:

$array = ['products' => ['desk' => ['price' => 100]]];array_forget($array, 'products.desk');// ['products' => []]
Copy after login

array_get()

array_get方法使用”.”号从嵌套数组中获取值:

$array = ['products' => ['desk' => ['price' => 100]]];$value = array_get($array, 'products.desk');// ['price' => 100]
Copy after login

array_get函数还接收一个默认值,如果指定键不存在的话则返回该默认值:

$value = array_get($array, 'names.john', 'default');
Copy after login

array_only()

array_only方法只从给定数组中返回指定键值对:

$array = ['name' => 'Desk', 'price' => 100, 'orders' => 10];$array = array_only($array, ['name', 'price']);// ['name' => 'Desk', 'price' => 100]
Copy after login

array_pluck()

array_pluck方法从数组中返回给定键对应的键值对列表:

$array = [    ['developer' => ['name' => 'Taylor']],    ['developer' => ['name' => 'Abigail']]];$array = array_pluck($array, 'developer.name');// ['Taylor', 'Abigail'];
Copy after login

你还可以指定返回结果的键:

$array = array_pluck($array, 'developer.name', 'developer.id');// [1 => 'Taylor', 2 => 'Abigail'];
Copy after login

array_prepend()

array_prepend函数将数据项推入数组开头:

$array = ['one', 'two', 'three', 'four'];$array = array_prepend($array, 'zero');// $array: ['zero', 'one', 'two', 'three', 'four']
Copy after login

array_pull()

array_pull方法从数组中返回并移除键值对:

$array = ['name' => 'Desk', 'price' => 100];$name = array_pull($array, 'name');// $name: Desk// $array: ['price' => 100]
Copy after login

array_set()

array_set方法在嵌套数组中使用”.”号设置值:

$array = ['products' => ['desk' => ['price' => 100]]];array_set($array, 'products.desk.price', 200);// ['products' => ['desk' => ['price' => 200]]]
Copy after login

array_sort()

array_sort方法通过给定闭包的结果对数组进行排序:

$array = [    ['name' => 'Desk'],    ['name' => 'Chair'],];$array = array_values(array_sort($array, function ($value) {    return $value['name'];}));/*    [        ['name' => 'Chair'],        ['name' => 'Desk'],    ]*/
Copy after login

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',        ]    ];*/
Copy after login

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]
Copy after login

head函数只是简单返回给定数组的第一个元素:

$array = [100, 200, 300];$first = head($array);// 100
Copy after login

last()

last函数返回给定数组的最后一个元素:

$array = [100, 200, 300];$last = last($array);// 300
Copy after login

3、 路径函数

app_path()

app_path函数返回 app目录的绝对路径:

$path = app_path();
Copy after login

你还可以使用 app_path函数为相对于 app目录的给定文件生成绝对路径:

$path = app_path('Http/Controllers/Controller.php');
Copy after login

base_path()

base_path函数返回项目根目录的绝对路径:

$path = base_path();
Copy after login

你还可以使用 base_path函数为相对于应用目录的给定文件生成绝对路径:

$path = base_path('vendor/bin');
Copy after login

config_path()

config_path函数返回应用配置目录的绝对路径:

$path = config_path();
Copy after login

database_path()

database_path函数返回应用数据库目录的绝对路径:

$path = database_path();
Copy after login

elixir()

elixir函数返回版本控制的Elixir文件所在路径:

elixir($file);
Copy after login

public_path()

public_path函数返回 public目录的绝对路径:

$path = public_path();
Copy after login

storage_path()

storage_path函数返回 storage目录的绝对路径:

$path = storage_path();
Copy after login

还可以使用 storage_path函数生成相对于 storage目录的给定文件的绝对路径:

$path = storage_path('app/file.txt');
Copy after login

4、 字符串函数

camel_case()

camel_case函数将给定字符串转化为按驼峰式命名规则的字符串:

$camel = camel_case('foo_bar');// fooBar
Copy after login

class_basename()

class_basename返回给定类移除命名空间后的类名:

$class = class_basename('Foo\Bar\Baz');// Baz
Copy after login

e()

e函数在给定字符串上运行 htmlentities:

echo e('<html>foo</html>');// <html>foo</html>
Copy after login

ends_with()

ends_with函数判断给定字符串是否以给定值结尾:

$value = ends_with('This is my name', 'name');// true
Copy after login

snake_case()

snake_case函数将给定字符串转化为下划线分隔的字符串:

$snake = snake_case('fooBar');// foo_bar
Copy after login

str_limit()

str_limit函数限制输出字符串的数目,该方法接收一个字符串作为第一个参数以及该字符串最大输出字符数作为第二个参数:

$value = str_limit('The PHP framework for web artisans.', 7);// The PHP...
Copy after login

starts_with()

starts_with函数判断给定字符串是否以给定值开头:

$value = starts_with('This is my name', 'This');// true
Copy after login

str_contains()

str_contains函数判断给定字符串是否包含给定值:

$value = str_contains('This is my name', 'my');// true
Copy after login

str_finish()

str_finish函数添加字符到字符串结尾:

$string = str_finish('this/string', '/');// this/string/
Copy after login

str_is()

str_is函数判断给定字符串是否与给定模式匹配,星号可用于表示通配符:

$value = str_is('foo*', 'foobar');// true$value = str_is('baz*', 'foobar');// false
Copy after login

str_plural()

str_plural函数将字符串转化为复数形式,该函数当前只支持英文:

$plural = str_plural('car');// cars$plural = str_plural('child');// children
Copy after login

还可以传递整型数据作为第二个参数到该函数以获取字符串的单数或复数形式:

$plural = str_plural('child', 2);// children$plural = str_plural('child', 1);// child
Copy after login

str_random()

str_random函数通过指定长度生成随机字符串:

$string = str_random(40);
Copy after login

str_singular()

str_singular函数将字符串转化为单数形式,该函数目前只支持英文:

$singular = str_singular('cars');// car
Copy after login

str_slug()

str_slug函数将给定字符串生成URL友好的格式:

$title = str_slug("Laravel 5 Framework", "-");// laravel-5-framework
Copy after login

studly_case()

studly_case函数将给定字符串转化为单词开头字母大写的格式:

$value = studly_case('foo_bar');// FooBar
Copy after login

trans()

trans函数使用本地文件翻译给定语言行:

echo trans('validation.required'):
Copy after login

trans_choice()

trans_choice函数翻译带拐点的给定语言行:

$value = trans_choice('foo.bar', $count);
Copy after login

5、URL函数

action()

action函数为给定控制器动作生成URL,你不需要传递完整的命名空间到该控制器,传递相对于命名空间 App\Http\Controllers的类名即可:

$url = action('HomeController@getIndex');
Copy after login

如果该方法接收路由参数,你可以将其作为第二个参数传递进来:

$url = action('UserController@profile', ['id' => 1]);
Copy after login

asset()

使用当前请求的 scheme(HTTP或HTTPS)为前端资源生成一个URL:

$url = asset('img/photo.jpg');
Copy after login

secure_asset()

使用 HTTPS 为前端资源生成一个 URL:

echo secure_asset('foo/bar.zip', $title, $attributes = []);
Copy after login

route()

route函数为给定命名路由生成一个URL:

$url = route('routeName');
Copy after login

如果该路由接收参数,你可以将其作为第二个参数传递进来:

$url = route('routeName', ['id' => 1]);
Copy after login

url()

url函数为给定路径生成绝对路径:

echo url('user/profile');echo url('user/profile', [1]);
Copy after login

如果没有提供路径,将会返回 Illuminate\Routing\UrlGenerator实例:

echo url()->current();echo url()->full();echo url()->previous();
Copy after login

6、其它函数

auth()

auth函数返回一个认证器实例,为方便起见你可以用其取代 Auth门面:

$user = auth()->user();
Copy after login

back()

back函数生成重定向响应到用户前一个位置:

return back();
Copy after login

bcrypt()

bcrypt函数使用Bcrypt对给定值进行哈希,你可以用其替代 Hash门面:

$password = bcrypt('my-secret-password');
Copy after login

collect()

collect函数会根据提供的数据项创建一个集合:

$collection = collect(['taylor', 'abigail']);
Copy after login

config()

config函数获取配置变量的值,配置值可以通过使用”.”号访问,包含文件名以及你想要访问的选项。如果配置选项不存在的话默认值将会被指定并返回:

$value = config('app.timezone');$value = config('app.timezone', $default);
Copy after login

辅助函数 config还可以用于在运行时通过传递键值对数组设置配置变量值:

config(['app.debug' => true]);
Copy after login

csrf_field()

csrf_field函数生成一个包含 CSRF 令牌值的 HTML 隐藏域,例如,使用Blade语法:

{!! csrf_field() !!}
Copy after login

csrf_token()

csrf_token函数获取当前 CSRF 令牌的值:

$token = csrf_token();
Copy after login

dd()

dd函数输出给定变量值并终止脚本执行:

dd($value);
Copy after login

dispatch()

dispatch函数推送一个新的任务到Laravel任务队列:

dispatch(new App\Jobs\SendEmails);
Copy after login

env()

env函数获取环境变量值或返回默认值:

$env = env('APP_ENV');// Return a default value if the variable doesn't exist...$env = env('APP_ENV', 'production');
Copy after login

event()

event函数分发给定事件到对应监听器:

event(new UserRegistered($user));
Copy after login

factory()

factory函数为给定类、名称和数量创建模型工厂构建器,可用于测试或数据填充:

$user = factory('App\User')->make();
Copy after login

method_field()

method_field函数生成包含HTTP请求方法的HTML隐藏域,例如:

<form method="POST">    {!! method_field('delete') !!}</form>
Copy after login

old()

old函数获取一次性存放在 Session 中的值:

$value = old('value');$value = old('value', 'default');
Copy after login

redirect()

redirect函数返回重定向器实例进行重定向:

return redirect('/home');
Copy after login

request()

request函数返回当前请求实例或者获取一个输入项:

$request = request();$value = request('key', $default = null)
Copy after login

response()

response函数创建一个响应实例或者获取响应工厂实例:

return response('Hello World', 200, $headers);return response()->json(['foo' => 'bar'], 200, $headers)
Copy after login

session()

session函数可以用于获取/设置 Session 值:

$value = session('key');
Copy after login

可以通过传递键值对数组到该函数的方式设置 Session 值:

session(['chairs' => 7, 'instruments' => 3]);
Copy after login

如果没有传入参数到 session函数则返回 Session 存储器对象实例:

$value = session()->get('key');session()->put('key', $value);
Copy after login

value()

value函数返回给定的值,然而,如果你传递一个闭包到该函数,该闭包将会被执行并返回执行结果:

$value = value(function() { return 'bar'; });
Copy after login

view()

view函数获取一个视图实例:

return view('auth.login');
Copy after login

with()

with函数返回给定的值,该函数在方法链中特别有用,别的地方就没什么用了:

$value = with(new Foo)->work();
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles