php – Laravel Command->选择循环

前端之家收集整理的这篇文章主要介绍了php – Laravel Command->选择循环前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用Laravel 5.2(当前是最新版本)在使用artisan function choice()时循环.我的代码是基本的:

<?PHP

namespace App\Console\Commands;

use Illuminate\Console\Command;

class TestCommand extends Command
{
    protected $signature = 'function:menu';

    public function handle() {
        $this->choice('select yes',['yes']);
    }
}

我跑的时候

PHP artisan function:menu

我明白了

select yes:
  [0] yes
 >


 [ERROR] Undefined variable: output

select yes:
  [0] yes
 >


 [ERROR] Undefined variable: output

它不停地循环不停地输入.它在Windows 7和Debian GNU / Linux 8(jessie)上运行良好,但在CentOS版本6.7(最终版)上全新安装了laravel.有谁知道为什么?

解决方法

我很确定错误不是你所做的选择句柄的结果.检查您的日志以获取更多信息,因为我认为源代码位于您应用中的其他位置.

cat -n 100 storage/logs/__your_latest_logfile.log

猜你在找的Laravel相关文章