CodeIgniter Flashdata

codeigniter flashdata

 

在構(gòu)建 web 應(yīng)用程序時(shí),我們只需要存儲(chǔ)一些數(shù)據(jù),然后我們想刪除這些數(shù)據(jù)。例如,顯示一些錯(cuò)誤消息或信息消息。在 php 中,我們必須手動(dòng)完成,但 codeigniter 為我們簡(jiǎn)化了這項(xiàng)工作。在 codeigniter 中,flashdata 只會(huì)在下一個(gè)請(qǐng)求之前可用,并且會(huì)自動(dòng)刪除。

 

添加閃存數(shù)據(jù)

我們可以簡(jiǎn)單地存儲(chǔ) flashdata,如下所示。

$this->session->mark_as_flash('item');
  • mark_as_flash() 函數(shù)用于此目的,它只需要存儲(chǔ)值的一個(gè)參數(shù)。我們還可以傳遞一個(gè)數(shù)組來存儲(chǔ)多個(gè)值。
  • 也可以使用set_flashdata() 函數(shù),它接受兩個(gè)參數(shù),名稱和值,如下所示。我們也可以傳遞一個(gè)數(shù)組。
$this->session->set_flashdata('item','value');

 

檢索閃存數(shù)據(jù)

可以使用 flashdata() 函數(shù)檢索 flashdata,該函數(shù)采用要獲取的項(xiàng)目的一個(gè)參數(shù),如下所示。 flashdata() 函數(shù)確保您只獲取閃存數(shù)據(jù)而不是任何其他數(shù)據(jù)。

$this->session->flashdata('item');

如果你不傳遞任何參數(shù),那么你可以得到一個(gè)具有相同功能的數(shù)組。

 

示例

創(chuàng)建一個(gè)名為 flashdata_controller.php 的類并將其保存在 application/controller/flashdata_controller.php。

 
   class flashdata_controller extends ci_controller {
	
      public function index() { 
         //load session library 
         $this--->load->library('session');
			
         //redirect to home page 
         $this->load->view('flashdata_home'); 
      } 
  
      public function add() { 
         //load session library 
         $this->load->library('session'); 
         $this->load->helper('url'); 
   
         //add flash data 
         $this->session->set_flashdata('item','item-value'); 
   
         //redirect to home page 
         redirect('flashdata'); 
      } 
   } 
?>

創(chuàng)建一個(gè)名為 flashdata_home.php的視圖文件并將其保存在 application/views/flashdata_home.php

 

 
    
       
      codeigniter flashdata example 
   
	
    
      flash data example 
      

echo $this--->session->flashdata('item'); ?>

click here to add flash data.

在 application/config/routes.php 中的 routes.php 文件中進(jìn)行更改,并在文件末尾添加以下行。

$route['flashdata'] = 'flashdata_controller'; 
$route['flashdata/add'] = 'flashdata_controller/add';

通過訪問以下鏈接執(zhí)行上述示例。將 yoursite.com 替換為您網(wǎng)站的網(wǎng)址。

http://yoursite.com/index.php/flashdata

訪問上述 url 后,您將看到如下所示的屏幕。

點(diǎn)擊" 點(diǎn)擊這里"鏈接,您將看到如下所示的屏幕。在這里,您將在此屏幕中看到閃存數(shù)據(jù)變量的值。再次刷新頁(yè)面,您將看到像上面這樣的屏幕和閃存數(shù)據(jù)變量將被自動(dòng)刪除。

下一節(jié):codeigniter 臨時(shí)數(shù)據(jù)

codeigniter 教程

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频