使用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.有谁知道为什么?