Maintain one session for the token

Source: Internet
Author: User
Provides various official and user-released code examples. For code reference, you are welcome to exchange and learn that the original token is a session corresponding to each page to store the _ hash _ value,
Each page header has a logon box. Each time a user accesses a page, a token is generated. If the user does not submit the token, the token will not be automatically destroyed (unless the session expires ).
A solution is to close the token through the configuration file and open the configuration parameters only in the required view.
However, I don't think my website needs to submit forms on multiple pages at the same time, and I use the session db hander extension. The char field length in the memory table is limited, it is impossible to store so many tokens infinitely.

Therefore, I decided to allow users to retain only one token.
There is another benefit in doing so, so that you can avoid submitting multiple pages at the same time and refresh the reply or something.
ThinkPHP/lib/Behavior/TokenBuildBehavior. class. php
Search // Create a form token
Private function buildToken (){
$ TokenName = C ('token _ name ');
$ TokenType = C ('token _ type ');
If (! Isset ($ _ SESSION [$ tokenName]) {
$ _ SESSION [$ tokenName] = array ();
}
// Identifies the uniqueness of the current page
$ TokenKey = md5 ($ _ SERVER ['request _ URI ']);
If (isset ($ _ SESSION [$ tokenName] [$ tokenKey]) {// No duplicate session is generated on the same page.
$ TokenValue = $ _ SESSION [$ tokenName] [$ tokenKey];
} Else {
$ TokenValue = $ tokenType (microtime (TRUE ));
$ _ SESSION [$ tokenName] [$ tokenKey] = $ tokenValue;
}
$ Token ='';
Return $ token;
}
Changed: // Create a form token
Private function buildToken (){
$ TokenName = C ('token _ name ');
$ TokenType = C ('token _ type ');
// If (! Isset ($ _ SESSION [$ tokenName]) {
// $ _ SESSION [$ tokenName] = array ();
//}
$ _ SESSION [$ tokenName] = array (); // clear the existing token before generating the token.
// Identifies the uniqueness of the current page
$ TokenKey = md5 ($ _ SERVER ['request _ URI ']);
If (isset ($ _ SESSION [$ tokenName] [$ tokenKey]) {// No duplicate session is generated on the same page.
$ TokenValue = $ _ SESSION [$ tokenName] [$ tokenKey];
} Else {
$ TokenValue = $ tokenType (microtime (TRUE ));
$ _ SESSION [$ tokenName] [$ tokenKey] = $ tokenValue;
}
$ Token ='';
Return $ token;
}
In this way, you can.

AD: truly free, domain name + VM + enterprise mailbox = 0 RMB

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.