CI框架 簡要知識

2021-08-18 20:15:48 字數 1161 閱讀 3340

常用函式:

$this->load->helper('url');//載入輔助函式

redirect("類名/方法名");//跳轉

site_url();//路徑如:localhost:8080/ci/index.php

base_url();//路徑如:localhost:8080/ci/

載入驗證類:

$this->load->library('form_validation');

設定規則:

$this->form_validation->set_rules('name值','標籤名稱','規則');

執行驗證(返回bool值)

$this->form_validation->run();

$this->load->helper('form');

set_value('name');//重填資料

form_error('name','','');//顯示錯誤

set_select();

set_checkbox();

set_radio();

array(

'field'=>'標籤名',

'label'=>'欄目名稱',

'rules'=>'規則'

),$this->input->post('標籤名');//

$this->input->get('標籤名');

$this->input->server('');

載入模型:

$this->load->model('模型名稱','別名');

呼叫方法:

$this->別名->方法名();

model類的建立:

class category_model extends ci_model

public function check()

public function checl_cate($cid)

public function update($cid,$data)

public function del($cid)

public function check($username)

}$this->url->segment(第幾個片段);

public function __construct()

檔案上傳:

ci框架 CI超級物件

目錄結構說明 license.txt 許可協議 user guide 使用者手冊 system 框架核心檔案 index.php 入口檔案 mvc1.入口檔案。唯一乙個讓瀏覽器直接請求的指令碼檔案 2.控制器controller 協調模型和檢視 3.模型 提供資料,儲存資料 4.檢視view 只負責...

CI框架記錄

1.取得 session 資料 可以通過如下的函式來得到 session 陣列的任何資訊 this session userdata item item 是陣列裡的相對應資料的索引。例如,想要獲得 session id,你要使用如下的 session id this session userdata...

CI框架初探

2014年7月3日 17 39 35 簡易版 index.php codeigniter.php 找到控制器類檔案並include 建立例項 執行成員函式 詳細版本 瀏覽器請求 index.php 包含codeigniter.php 接下來的步驟都是在codeigniter.php中執行 包含sys...