gpt4 book ai didi

php - Laravel 参数太多,调度时预期参数为 "command"

转载 作者:可可西里 更新时间:2023-11-01 12:37:59 25 4
gpt4 key购买 nike

这应该是直截了当的,但我不知道为什么它不起作用。我在 laravel 中创建一个命令,在用户的生日那天发送生日电子邮件提醒。

一切正常,调度功能被触发但出现错误

 [Symfony\Component\Console\Exception\RuntimeException]
Too many arguments, expected arguments "command".

这是我的命令

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use App\User;
class SendBirthdayReminderEmail extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'email:birthday';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Email users a birthday Reminder message';

/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{

$users = User::whereMonth('dob', '=', date('m'))->whereDay('dob', '=', date('d'))->get();
foreach($users as $user) {
Mail::queue('emails.birthday', ['user' => $user], function ($mail) use ($user) {
$mail->to($user['email'])
->from('info@XXXXXX.com', 'Company')
->subject('Happy Birthday!');
});

}

$this->info('Birthday messages sent successfully!');

}
}

这是我的 kernel.php 文件

<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
Commands\SendBirthdayReminderEmail::class
];

/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{


$schedule->command('email:birthday')->dailyAt('13:00')->timezone('Africa/Dar_es_Salaam');
}

/**
* Register the Closure based commands for the application.
*
* @return void
*/
protected function commands()
{
require base_path('routes/console.php');
}
}

任何帮助将不胜感激。谢谢:-)

最佳答案

我找到了解决方案,

/opt/php70/bin/php /home/sitename/public_html/artisan schedule:run >/dev/null 2>&1

最初我在 schedule:run 方法之后有 1 个。如下

/opt/php70/bin/php /home/sitename/public_html/artisan schedule:run 1 >/dev/null 2>&1

关于php - Laravel 参数太多,调度时预期参数为 "command",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41974922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com