App下載

詞條

大約有 7,000 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0047秒)

4251.Laravel 8 閉包命令描述

...過 describe 方法來為命令添加描述。這個描述會在你執(zhí)行 php artisan list 或 php artisan help 命令時顯示:Artisan::command('build {project}', function ($project) { $this->info("Building {$project}!"); })->describe('Build the project');

http://www.o2fo.com/laravel_8/laravel_8-tauw3h6c.html

4252.Laravel 8 輸入數(shù)組

...以下命令將會設(shè)置 user 的值為 ['foo', 'bar'] :php artisan email:send foo barCopy 當(dāng)定義一個接收數(shù)組的選項的時候,傳遞給命令的每一個選項值都應(yīng)該添加選項名稱為前綴:email:send {user} {--id=*} php artisan email:send --id=1 --id=2

http://www.o2fo.com/laravel_8/laravel_8-r5vo3h6i.html

4253.Laravel 8 配置

所有關(guān)于事件廣播的配置都保存在 config/broadcasting.php 配置文件中。 Laravel 自帶了幾個廣播驅(qū)動: Pusher Channels, Redis, 和一個用于本地開發(fā)與調(diào)試的 log 驅(qū)動。另外,還有一個 null 驅(qū)動允許你完全關(guān)閉廣播系統(tǒng)。每一個驅(qū)動的示例...

http://www.o2fo.com/laravel_8/laravel_8-6yfz3h8x.html

4254.Laravel 8 廣播隊列

通常, 在你的 queue.php 配置文件中, 每個廣播事件都放在指定默認(rèn)隊列連接的默認(rèn)隊列中。你可以在事件類中定義一個 broadcastQueue 屬性來自定義廣播的隊列。此屬性應(yīng)指定廣播時你要使用隊列的名稱:/** * 要放置事件的隊列的...

http://www.o2fo.com/laravel_8/laravel_8-is563h9g.html

4255.Laravel 8 flatten() {#collection-method}

...ct(['name' => 'taylor', 'languages' => ['php', 'javascript']]); $flattened = $collection->flatten(); $flattened->all(); // ['taylor', 'php', 'javascript']; 你可以選擇性地傳入「深度」參數(shù):$collection = collec...

http://www.o2fo.com/laravel_8/laravel_8-3w153hd9.html

4256.Laravel 8 簡介

...步學(xué)習(xí) Laravel 的懶集合之前,我們先花點時間熟悉一下 PHP generators。 為了補(bǔ)充已經(jīng)很強(qiáng)大的 Collection 類, LazyCollection 類利用了 PHP 的 generators 來允許你在保持低內(nèi)存使用率的同時使用非常大的數(shù)據(jù)集。 例如,假設(shè)你的應(yīng)用需要...

http://www.o2fo.com/laravel_8/laravel_8-213i3hg0.html

4257.Laravel 8 Arr::flatten() {#collection-method}

Arr::flatten 函數(shù)將多維數(shù)組中數(shù)組的值取出平鋪為一維數(shù)組:use Illuminate\Support\Arr; $array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']]; $flattened = Arr::flatten($array); // ['Joe', 'PHP', 'Ruby']

http://www.o2fo.com/laravel_8/laravel_8-m6w73hjn.html

4258.Laravel 8 Mailgun 驅(qū)動

...使用 Mailgun 驅(qū)動,首先必須安裝 Guzzle, 之后將 config/mail.php 配置文件中的 default 選項設(shè)置為 mailgun. 接下來,確認(rèn) config/services.php 配置文件包含以下選項:'mailgun' => [ 'domain' => 'your-mailgun-domain', 'secret' =&...

http://www.o2fo.com/laravel_8/laravel_8-1zo83hps.html

4259.Laravel 8 Postmark 驅(qū)動

...tmailer-postmark 然后,安裝 Guzzle 并為 postmark 設(shè)置 config/mail.php 配置文件中的 default 選項。最后,確認(rèn)你的 config/services.php 配置文件包含以下選項:'postmark' => [ 'token' => 'your-postmark-token', ],

http://www.o2fo.com/laravel_8/laravel_8-9kf63hpt.html

4260.Laravel 8 使用全局的 from 地址

... from 方法可能會很麻煩。因此,您可以在您的 config/mail.php 文件中指定一個全局的「發(fā)件人」地址。當(dāng)某個 mailable 類沒有指定「發(fā)件人」時,它將使用該全局「發(fā)件人」:'from' => ['address' => 'example@example.com'...

http://www.o2fo.com/laravel_8/laravel_8-4vab3hpz.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

4251.Laravel 8 閉包命令描述

...過 describe 方法來為命令添加描述。這個描述會在你執(zhí)行 php artisan list 或 php artisan help 命令時顯示:Artisan::command('build {project}', function ($project) { $this->info("Building {$project}!"); })->describe('Build the project');

http://www.o2fo.com/laravel_8/laravel_8-tauw3h6c.html

4252.Laravel 8 輸入數(shù)組

...以下命令將會設(shè)置 user 的值為 ['foo', 'bar'] :php artisan email:send foo barCopy 當(dāng)定義一個接收數(shù)組的選項的時候,傳遞給命令的每一個選項值都應(yīng)該添加選項名稱為前綴:email:send {user} {--id=*} php artisan email:send --id=1 --id=2

http://www.o2fo.com/laravel_8/laravel_8-r5vo3h6i.html

4253.Laravel 8 配置

所有關(guān)于事件廣播的配置都保存在 config/broadcasting.php 配置文件中。 Laravel 自帶了幾個廣播驅(qū)動: Pusher Channels, Redis, 和一個用于本地開發(fā)與調(diào)試的 log 驅(qū)動。另外,還有一個 null 驅(qū)動允許你完全關(guān)閉廣播系統(tǒng)。每一個驅(qū)動的示例...

http://www.o2fo.com/laravel_8/laravel_8-6yfz3h8x.html

4254.Laravel 8 廣播隊列

通常, 在你的 queue.php 配置文件中, 每個廣播事件都放在指定默認(rèn)隊列連接的默認(rèn)隊列中。你可以在事件類中定義一個 broadcastQueue 屬性來自定義廣播的隊列。此屬性應(yīng)指定廣播時你要使用隊列的名稱:/** * 要放置事件的隊列的...

http://www.o2fo.com/laravel_8/laravel_8-is563h9g.html

4255.Laravel 8 flatten() {#collection-method}

...ct(['name' => 'taylor', 'languages' => ['php', 'javascript']]); $flattened = $collection->flatten(); $flattened->all(); // ['taylor', 'php', 'javascript']; 你可以選擇性地傳入「深度」參數(shù):$collection = collec...

http://www.o2fo.com/laravel_8/laravel_8-3w153hd9.html

4256.Laravel 8 簡介

...步學(xué)習(xí) Laravel 的懶集合之前,我們先花點時間熟悉一下 PHP generators。 為了補(bǔ)充已經(jīng)很強(qiáng)大的 Collection 類, LazyCollection 類利用了 PHP 的 generators 來允許你在保持低內(nèi)存使用率的同時使用非常大的數(shù)據(jù)集。 例如,假設(shè)你的應(yīng)用需要...

http://www.o2fo.com/laravel_8/laravel_8-213i3hg0.html

4257.Laravel 8 Arr::flatten() {#collection-method}

Arr::flatten 函數(shù)將多維數(shù)組中數(shù)組的值取出平鋪為一維數(shù)組:use Illuminate\Support\Arr; $array = ['name' => 'Joe', 'languages' => ['PHP', 'Ruby']]; $flattened = Arr::flatten($array); // ['Joe', 'PHP', 'Ruby']

http://www.o2fo.com/laravel_8/laravel_8-m6w73hjn.html

4258.Laravel 8 Mailgun 驅(qū)動

...使用 Mailgun 驅(qū)動,首先必須安裝 Guzzle, 之后將 config/mail.php 配置文件中的 default 選項設(shè)置為 mailgun. 接下來,確認(rèn) config/services.php 配置文件包含以下選項:'mailgun' => [ 'domain' => 'your-mailgun-domain', 'secret' =&...

http://www.o2fo.com/laravel_8/laravel_8-1zo83hps.html

4259.Laravel 8 Postmark 驅(qū)動

...tmailer-postmark 然后,安裝 Guzzle 并為 postmark 設(shè)置 config/mail.php 配置文件中的 default 選項。最后,確認(rèn)你的 config/services.php 配置文件包含以下選項:'postmark' => [ 'token' => 'your-postmark-token', ],

http://www.o2fo.com/laravel_8/laravel_8-9kf63hpt.html

4260.Laravel 8 使用全局的 from 地址

... from 方法可能會很麻煩。因此,您可以在您的 config/mail.php 文件中指定一個全局的「發(fā)件人」地址。當(dāng)某個 mailable 類沒有指定「發(fā)件人」時,它將使用該全局「發(fā)件人」:'from' => ['address' => 'example@example.com'...

http://www.o2fo.com/laravel_8/laravel_8-4vab3hpz.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程