lumen 5.6 设置APP_KEY为32位长的随机字符串

在 App\Console\Commands下 添加以下内容的KeyGenerateCommand.php文件

generateRandomKey();

        file_put_contents(base_path('.env'), preg_replace(
            '/^APP_KEY=[\w]*/m',
            'APP_KEY='.$key,
            file_get_contents(base_path('.env'))
        ));

        $this->info("Application key [$key] set successfully.");
    }

    /**
     * Generate a random key for the application.
     *
     * @return string
     */
    protected function generateRandomKey()
    {
        return str_random(32);
    }

}

将指令注入
修改App\Console 下的Kernel.php 文件

 protected $commands = [
        //注入指令
        'App\Console\Commands\KeyGenerateCommand', 
    ];

现在可以使用 php artisan key:generate 指令 修改 .env中的APP_KEY 的值

你可能感兴趣的:(lumen 5.6 设置APP_KEY为32位长的随机字符串)