今天下午看了一下ci框架,簡單的記一下。
主要目錄結構:
cache :儲存cache檔案目錄
config :配置檔案目錄
controllers :**控制層檔案
errors :儲存錯誤輸出資訊檔案
helpers :使用者定義助手類檔案目錄
hooks :使用者定義鉤子類檔案目錄
language :使用者定義提示資訊語言檔案目錄
libraries :使用者定義擴充套件類檔案目錄
models :**業務邏輯層檔案目錄
views :**展現層檔案目錄
system:框架目錄
user_guide:文件目錄
資料庫連線:
新建model類test,在models目錄下
<?php
class test extends ci_model
function item_select_limit($start, $end)
function item_insert($arr)
function item_select_all()
function item_delete($id)
} ?>
新建控制層類index,在controllers目錄下
<?php
class index extends ci_controller
function index()
}?>
注意:這裡向模版注入的變數不是陣列而是資料物件,$data2->id來獲取資料。
展示層檔案新建在views**目錄檔案格式php
資料庫結構查詢
1 獲取當前資料庫中的所有使用者表 select name from sysobjects where xtype u and status 0 2 獲取某乙個表的所有字段 select name from syscolumns where id object id n 表名 3 檢視與某乙個表相關...
ci框架目錄結構分析
myshop system 框架程式目錄 core 框架的核心程式 codeigniter.php 引導性檔案 common.php 載入基類庫的公共函式 controller.php 基控制器類 ci controller model.php 基模型類 ci model config.php 配置...
CI的資料庫操作
active group default db default hostname hostname 你的資料庫的位置,舉例來說,localhost 或 ip 位址 db default username username和password 使用者名稱和密碼必須有充分的許可權,允許你的 訪問資料庫中的...