Home  >  Article  >  PHP Framework  >  About TP6 verification code and session

About TP6 verification code and session

藏色散人
藏色散人forward
2020-12-08 14:54:142894browse

The following is the thinkphp framework tutorial column to introduce you to the verification code and session of TP6. I hope it will be helpful to friends in need!

When using the tp6 verification code today, I did the login verification. The verification code reports an error, and life and death prompts that the verification code failed.

After some testing, I found out that the tp6 session is not enabled by default. Need to manually uncomment.

About TP6 verification code and session

The relationship between verification code and session.

In fact, he saved the content of the verification code in the session, so if you use the verification code, you must open the session.

This is his Captcha class
You can see that he first injected a session class into the constructor to create a session object and save it. Later session operations will rely on this object.

About TP6 verification code and session

As you can see in his method of creating a verification code, he stored a 'captcha' key into the session through the session object.

About TP6 verification code and session

When he is verifying the verification code:

First get the verification code information stored in the session.

About TP6 verification code and session

This is why the session must be enabled when using the tp6 verification code. In the era before tp6, it was based on whether the session was enabled in your php.ini. In tp6, it encapsulates the implementation of session, so you need to manually open the session. Remember! ! !

The above is the detailed content of About TP6 verification code and session. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:segmentfault.com. If there is any infringement, please contact admin@php.cn delete