App下載

詞條

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

5401.Laravel 8 任務(wù)失敗后的清理工作

...置。導(dǎo)致作業(yè)失敗的 Throwable 將被傳遞給 failed 方法:<?php namespace App\Jobs; use App\Models\Podcast; use App\Services\AudioProcessor; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\Serializ...

http://o2fo.com/laravel_8/laravel_8-r94d3hve.html

5402.Laravel 8 任務(wù)失敗事件

...avel 里的 AppServiceProvider 里附加一個回調(diào)到這個事件:<?php namespace App\Providers; use Illuminate\Support\Facades\Queue; use Illuminate\Support\ServiceProvider; use Illuminate\Queue\Events\JobFailed; class AppServiceProvider extends ServiceProvider { /** * 注冊任何應(yīng)用程...

http://o2fo.com/laravel_8/laravel_8-9smc3hvf.html

5403.Laravel 8 任務(wù)事件

...法。例如,我們可以使用 Laravel 的 AppServiceProvider: <?php namespace App\Providers; use Illuminate\Support\Facades\Queue; use Illuminate\Support\ServiceProvider; use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\Events\JobProcessing; class AppServiceProvider extends Se...

http://o2fo.com/laravel_8/laravel_8-e19y3hvi.html

5404.Laravel 8 簡介

...器上創(chuàng)建單個 Cron 入口。你的任務(wù)調(diào)度在 app/Console/Kernel.php 的 schedule 方法中進(jìn)行定義。為了幫助你更好的入門,這個方法中有個簡單的例子。

http://o2fo.com/laravel_8/laravel_8-rle93hvk.html

5405.Laravel 8 啟動調(diào)度器

...類的服務(wù)來管理 Cron 條目:* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1 該 Cron 會每分鐘調(diào)用一次 Laravel 的命令行調(diào)度器。在執(zhí)行 schedule:run 命令時,Laravel 會根據(jù)你的調(diào)度執(zhí)行預(yù)定的程序。

http://o2fo.com/laravel_8/laravel_8-a7wg3hvl.html

5406.Laravel 8 時區(qū)

...有計劃任務(wù)分配相同的時區(qū),那么需要在 app/Console/Kernel.php 文件中定義 scheduleTimezone 方法。這個方法會返回一個默認(rèn)時區(qū),最終分配給所有計劃任務(wù):/** * 獲取計劃事件默認(rèn)使用的時區(qū) * * @return \DateTimeZone|string|null */ protected funct...

http://o2fo.com/laravel_8/laravel_8-7ypq3hvv.html

5407.Laravel 8 配置

數(shù)據(jù)庫的配置文件在 config/database.php 文件中,你可以在這個文件中定義所有的數(shù)據(jù)庫連接配置,并指定默認(rèn)的數(shù)據(jù)庫連接。這個文件中提供了大部分 Laravel 能夠支持的數(shù)據(jù)庫配置示例。默認(rèn)情況下,Laravel 的示例 環(huán)境配置 使用...

http://o2fo.com/laravel_8/laravel_8-bvj13hws.html

5408.Laravel 8 使用多數(shù)據(jù)庫連接

...接。傳遞給 connection 方法的參數(shù) name 應(yīng)該是 config/database.php 配置文件中 connections 數(shù)組中的一個值:$users = DB::connection('foo')->select(...); 你也可以使用一個連接實(shí)例上的 getPdo 方法訪問底層的 PDO 實(shí)例:$pdo = DB::connection()->g...

http://o2fo.com/laravel_8/laravel_8-6ypj3hww.html

5409.Laravel 8 監(jiān)聽查詢事件

...用。你可以在 服務(wù)提供器 中注冊你的查詢監(jiān)聽器:<?php namespace App\Providers; use Illuminate\Support\Facades\DB; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * 注冊所有應(yīng)用的服務(wù) * * @return void */ public function re...

http://o2fo.com/laravel_8/laravel_8-ixbw3hx6.html

5410.Laravel 8 查詢構(gòu)造器分頁

...錄數(shù)。在此例中,我們指定要在每頁顯示 15 條數(shù)據(jù):<?php namespace App\Http\Controllers; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\DB; class UserController extends Controller { /** * 顯示該應(yīng)用程序的所有用戶。 * * @return Response */ publi...

http://o2fo.com/laravel_8/laravel_8-5rp33hyx.html

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

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

w3cschool 建議您:

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

5401.Laravel 8 任務(wù)失敗后的清理工作

...置。導(dǎo)致作業(yè)失敗的 Throwable 將被傳遞給 failed 方法:<?php namespace App\Jobs; use App\Models\Podcast; use App\Services\AudioProcessor; use Illuminate\Bus\Queueable; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\Serializ...

http://o2fo.com/laravel_8/laravel_8-r94d3hve.html

5402.Laravel 8 任務(wù)失敗事件

...avel 里的 AppServiceProvider 里附加一個回調(diào)到這個事件:<?php namespace App\Providers; use Illuminate\Support\Facades\Queue; use Illuminate\Support\ServiceProvider; use Illuminate\Queue\Events\JobFailed; class AppServiceProvider extends ServiceProvider { /** * 注冊任何應(yīng)用程...

http://o2fo.com/laravel_8/laravel_8-9smc3hvf.html

5403.Laravel 8 任務(wù)事件

...法。例如,我們可以使用 Laravel 的 AppServiceProvider: <?php namespace App\Providers; use Illuminate\Support\Facades\Queue; use Illuminate\Support\ServiceProvider; use Illuminate\Queue\Events\JobProcessed; use Illuminate\Queue\Events\JobProcessing; class AppServiceProvider extends Se...

http://o2fo.com/laravel_8/laravel_8-e19y3hvi.html

5404.Laravel 8 簡介

...器上創(chuàng)建單個 Cron 入口。你的任務(wù)調(diào)度在 app/Console/Kernel.php 的 schedule 方法中進(jìn)行定義。為了幫助你更好的入門,這個方法中有個簡單的例子。

http://o2fo.com/laravel_8/laravel_8-rle93hvk.html

5405.Laravel 8 啟動調(diào)度器

...類的服務(wù)來管理 Cron 條目:* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1 該 Cron 會每分鐘調(diào)用一次 Laravel 的命令行調(diào)度器。在執(zhí)行 schedule:run 命令時,Laravel 會根據(jù)你的調(diào)度執(zhí)行預(yù)定的程序。

http://o2fo.com/laravel_8/laravel_8-a7wg3hvl.html

5406.Laravel 8 時區(qū)

...有計劃任務(wù)分配相同的時區(qū),那么需要在 app/Console/Kernel.php 文件中定義 scheduleTimezone 方法。這個方法會返回一個默認(rèn)時區(qū),最終分配給所有計劃任務(wù):/** * 獲取計劃事件默認(rèn)使用的時區(qū) * * @return \DateTimeZone|string|null */ protected funct...

http://o2fo.com/laravel_8/laravel_8-7ypq3hvv.html

5407.Laravel 8 配置

數(shù)據(jù)庫的配置文件在 config/database.php 文件中,你可以在這個文件中定義所有的數(shù)據(jù)庫連接配置,并指定默認(rèn)的數(shù)據(jù)庫連接。這個文件中提供了大部分 Laravel 能夠支持的數(shù)據(jù)庫配置示例。默認(rèn)情況下,Laravel 的示例 環(huán)境配置 使用...

http://o2fo.com/laravel_8/laravel_8-bvj13hws.html

5408.Laravel 8 使用多數(shù)據(jù)庫連接

...接。傳遞給 connection 方法的參數(shù) name 應(yīng)該是 config/database.php 配置文件中 connections 數(shù)組中的一個值:$users = DB::connection('foo')->select(...); 你也可以使用一個連接實(shí)例上的 getPdo 方法訪問底層的 PDO 實(shí)例:$pdo = DB::connection()->g...

http://o2fo.com/laravel_8/laravel_8-6ypj3hww.html

5409.Laravel 8 監(jiān)聽查詢事件

...用。你可以在 服務(wù)提供器 中注冊你的查詢監(jiān)聽器:<?php namespace App\Providers; use Illuminate\Support\Facades\DB; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * 注冊所有應(yīng)用的服務(wù) * * @return void */ public function re...

http://o2fo.com/laravel_8/laravel_8-ixbw3hx6.html

5410.Laravel 8 查詢構(gòu)造器分頁

...錄數(shù)。在此例中,我們指定要在每頁顯示 15 條數(shù)據(jù):<?php namespace App\Http\Controllers; use App\Http\Controllers\Controller; use Illuminate\Support\Facades\DB; class UserController extends Controller { /** * 顯示該應(yīng)用程序的所有用戶。 * * @return Response */ publi...

http://o2fo.com/laravel_8/laravel_8-5rp33hyx.html

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

w3cschool 建議您:

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

熱門課程