Laravel 5 - how to run a Controller method from an Artisan Command?(Laravel 5 - 如何从 Artisan 命令运行控制器方法?)
问题描述
我需要我的控制器中的一些代码每十分钟运行一次.使用 Scheduler
和 Commands
就足够简单了.但.我创建了一个 Command
,用 Laravel Scheduler
(在 Kernel.php
中)注册它,现在我无法实例化 控制器
.我知道这是解决此问题的错误方法,但我只需要进行快速测试.有没有办法,请注意一个hacky的方式,来完成这个?谢谢.
更新 #1:
命令
:
');}}
StatsController.php
updateStats()
方法
公共静态函数 updateStats($theProfileName) {//身体}
这将返回一个FatalErrorException
:
[SymfonyComponentDebugExceptionFatalErrorException]语法错误,意外的if"(T_IF)
更新#2:
结果是我在 updateStats()
方法中有一个错字,但@alexey-mezenin 的回答很有魅力!把Controller
导入Command
也够了:
使用 AppHttpControllersStatsController;
然后像往常一样初始化它:
公共函数句柄() {$statControl = 新的 StatsController;$statControl->updateStats('');}
尝试在命令代码中使用 use FullPathToYourController;
并静态使用方法:
公共静态函数 someStaticMethod(){返回你好";}
在您的命令代码中:
echo myClass::someStaticMethod();
I need some code from my Controller to run every ten minutes. Easy enough with Scheduler
and Commands
. But. I've created a Command
, registered it with Laravel Scheduler
(in Kernel.php
) and now I am unable to instantiate the Controller
. I know it's a wrong way to approach this problem, but I just needed a quick test. Is there a way, mind you a hacky way, to accomplish this? Thank you.
Update #1:
The Command
:
<?php
namespace AppConsoleCommands;
use IlluminateConsoleCommand;
use AppHttpControllersStatsController;
class UpdateProfiles extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'update-profiles';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Updates profiles in database.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
StatsController::updateStats('<theProfileName>');
}
}
updateStats()
method in StatsController.php
public static function updateStats($theProfileName) {
// the body
}
This returns a FatalErrorException
:
[SymfonyComponentDebugExceptionFatalErrorException]
syntax error, unexpected 'if' (T_IF)
Update #2:
Turns out that I've had an typo in the updateStats()
method, but the answer by @alexey-mezenin works like a charm! It is also enough to import the Controller
into the Command
:
use AppHttpControllersStatsController;
And then initialize it as you'd do normally:
public function handle() {
$statControl = new StatsController;
$statControl->updateStats('<theProfileName>');
}
Try to use use FullPathToYourController;
in your command code and use method statically:
public static function someStaticMethod()
{
return 'Hello';
}
In your command code:
echo myClass::someStaticMethod();
这篇关于Laravel 5 - 如何从 Artisan 命令运行控制器方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 5 - 如何从 Artisan 命令运行控制器方法?
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01