gpt4 book ai didi

php - Hook 到 laravel 4 artisan 命令

转载 作者:行者123 更新时间:2023-12-05 03:14:58 24 4
gpt4 key购买 nike

有没有一种方法可以轻松地挂接到 artisan 命令?我想要完成的是在每次执行 php artisan migrate 命令时执行一段代码。

最佳答案

只需在您的代码中的某个位置添加一个监听器(甚至在 app/start/artisan.php 的顶部)以监听“artisan.start”事件。

Event::listen('artisan.start', function($app)
{
// $app is instance of Illuminate\Console\Application
// since the $app hasn't figured the command yet you'll
// have to do it yourself to check if it's the migrate command
});

关于php - Hook 到 laravel 4 artisan 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21948288/

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