Home  >  Q&A  >  body text

php - What is the role of app key in laravel?

I just watched the relevant tutorial on the laravel project cloning process. I am not sure about the function of the app key in the article. I am currently using laravel 5.1, and I can’t find it in Baidu or the manual. Could you please tell me the specific function of the app key, thank you very much.

扔个三星炸死你扔个三星炸死你2657 days ago1375

reply all(1)I'll reply

  • 世界只因有你

    世界只因有你2017-06-14 10:56:50

    The framework is described like this:

    This key is used by the Illuminate encrypter service and should be set to a random, 32 character string, otherwise these encrypted strings will not be safe. Please do this before deploying an application!

    That is, this key is a random string, used to implement the encrypt (encryption) service in the framework, such as storing the user's session, cookies, etc., to ensure information security. The key can be updated through the artisan command.

    reply
    0
  • Cancelreply