CodeIgniter中Router類的兩個方法

2021-05-27 07:18:45 字數 698 閱讀 8566

file:

/* location: ./system/core/router.php */

第乙個:

/**

* fetch the current method

* * @access public

* @return string

*/function fetch_method()

return $this->method;

}

第二個:

/**

* fetch the current class

* * @access public

* @return string

*/function fetch_class()

第乙個主要是獲取當前請求的method,也就是controller下的action,

第二個主要是去當前訪問的controller。

詳情請看該類的**。

因為這兩個方法經常在做許可權控制的時候需要用到,之前採用了如下的方式來取取得controller和method,不是很好。所以推薦使用上面的兩個方法。

$this->ci->uri->segment(1)

利用CodeIgniter中的Email類發郵件

codeigniter擁有功能強大的email類。以下為利用其傳送郵件的 關於ci的email類的詳情請參考 class welcome extends ci controller 在載入email類之後需要配置email引數。配置完成之後使用 this email initialize confi...

利用CodeIgniter中的Email類發郵件

codeigniter擁有功能強大的email類。以下為利用其傳送郵件的 關於ci的email類的詳情請參考 class welcome extends ci controller 在載入email類之後需要配置email引數。配置完成之後使用 this email initialize confi...

CodeIgniter中如何引用靜態檔案的路徑

引入外部檔案有幾種方法,這裡列舉兩種僅供參考,好久沒用ci了,拿過來熟悉一下,有不到之處還請莫怪。第一 ci自帶的base url來設定,如下 進入 application config config.php檔案,在config.php檔案中設定base url config base url 這裡...