Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 AppFog 中的 Laravel 应用程序上运行工匠命令?
我需要运行这样的命令:
php artisan down php artisan up
任何想法?
看起来我可以在我的应用程序代码中运行 Artisan 命令,如下所示:
Artisan::call('down');
参考:Laravel 论坛
看起来你目前不能这样做,其他人似乎对此很恼火:
也许解决方法是在应用程序中构建一个受密码保护的部分,直接调用工匠任务?