W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
使用 pingBefore
和 thenPing
方法,你可以在任務(wù)完成之前或完成之后來 ping 指定的 URL。當前方法在通知外部服務(wù) [如 Laravel Envoyer] ( envoyer.io ) 計劃任務(wù)在將要執(zhí)行或已完成時會很有用:
$schedule->command('emails:send')
->daily()
->pingBefore($url)
->thenPing($url);
只有當條件為 true 時,才可以使用 pingBeforeIf
和 thenPingIf
方法來 ping 給定 URL :
$schedule->command('emails:send')
->daily()
->pingBeforeIf($condition, $url)
->thenPingIf($condition, $url);
當任務(wù)成功或失敗時,使用 pingOnSuccess
和 pingOnFailure
方法來 ping 給定 URL:
$schedule->command('emails:send')
->daily()
->pingOnSuccess($successUrl)
->pingOnFailure($failureUrl);
所有 ping 方法都需要 Guzzle HTTP 庫。你可以使用 composer 將 Guzzle 添加到你的項目中:
composer require guzzlehttp/guzzle
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: