Session flash data Flash in CI framework

Source: Internet
Author: User

CodeIgniter supports "flash data", or session data is only available for the next server request and is automatically cleared. This should be useful and often applied to information or status hints (for example: "Record 2 deleted").

For example, when a record is deleted from the article List page, "Record 2 deleted" is prompted. or edit the article when you save the prompt "article modify success" or "Modify failed, parameter error" and so on.

Key techniques in the code: in the session key value pairs, the key name added "new" or "old" to judge

Set_flashdata (when setting the Flash data, plus new, which indicates the fresh flash data)

$flashdata _key = $this->flashdata_key. ': New: ' $key; $this->set_userdata ($flashdata _key, $val);



Flashdata (when it gets, it's old data)

$flashdata _key = $this->flashdata_key. ': o LD: '. $key; return $this->userdata ($flashdata _key);


The 2-step operation (in the constructor) was done before getting it:

1. _flashdata_sweep () function: Delete all old data

2, _flashdata_mark () role: Replace the new data with old data

So the 1th time Flashdata can fetch old data.

If the 2nd time is acquired again, because the _flashdata_sweep () function deleted old, so no more data can be obtained.


Session flash data Flash in CI framework

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.