CI(Codeigniter)的Setting增強配置類實例
本文實例講述了Codeigniter的Setting增強配置類。分享給大家供大家參考,具體如下:
該增強配置類適用配置項要求比較靈活的項目??蓪崿F(xiàn)預加載配置、組配置、單項調(diào)取、增、刪、改配置,無需在改動config文檔。
使用:
在需要的地方
對于預加載項可以使用
對于臨時調(diào)取項可以使用
首先,創(chuàng)建數(shù)據(jù)表
CREATE TABLE `system_settings` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`key` varchar(64) NOT NULL DEFAULT '',
`value` mediumtext NOT NULL,
`group` varchar(55) NOT NULL DEFAULT 'site',
`autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
PRIMARY KEY (`id`,`key`),
KEY `name` (`key`),
KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
然后,在application/libraries目錄下創(chuàng)建setting.php,內(nèi)容如下
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Setting {
private $_ci;
private $settings_autoloaded;
private $settings = array();
private $settings_group = array();
private $settings_db;
public function __construct() {
$this->_ci = &get_instance();
$this->settings_db = $this->_ci->config->item('settings_table');
$this->autoload();
}
// ------------------------------------------------------------------------
// 華麗的分割線 正式開始
// ------------------------------------------------------------------------
/**
* 從數(shù)據(jù)庫獲取所有自動加載的設置
*/
public function autoload() {
//如果存在則直接返回
if (!empty($this->settings)) {
return $this->settings;
}
//如果系統(tǒng)不存在數(shù)據(jù)表則返回false
if (!$this->_ci->db->table_exists($this->settings_db)) {
return FALSE;
}
//查詢標記為自動加載的項
$this->_ci->db->select('key,value')->from($this->settings_db)->where('autoload', 'yes');
$query = $this->_ci->db->get();
if ($query->num_rows() == 0) {
return FALSE;
}
//循環(huán)寫入系統(tǒng)配置
foreach ($query->result() as $k => $row) {
$this->settings[$row->key] = $row->value;
$this->_ci->config->set_item($row->key, $row->value);
}
//標記會話,避免重復讀庫
//$this->_ci->session->set_userdata('settings_autoloaded', TRUE);
return $this->settings;
}
// ------------------------------------------------------------------------
/**
* 獲取單個設定
*
* <code>
* <?php $this->settings->get('config_item');
?>
* </code>
*/
public function item($key) {
if (!$key) {
return FALSE;
}
//首先檢查是否系統(tǒng)已經(jīng)自動加載
if (isset($this->settings[$key])) {
return $this->settings[$key];
}
//查詢數(shù)據(jù)庫
$this->_ci->db->select('value')->from($this->settings_db)->where('key', $key);
$query = $this->_ci->db->get();
if ($query->num_rows() > 0) {
$row = $query->row();
$this->settings[$key] = $row->value;
return $row->value;
}
// 查詢不到結果則查找系統(tǒng)config,返回值或者false
return $this->_ci->config->item($key);
}
// ------------------------------------------------------------------------
/**
* 獲取組配置
*/
public function group($group = '') {
if (!$group) {
return FALSE;
}
$this->_ci->db->select('key,value')->from($this->settings_db)->where('group', $group);
$query = $this->_ci->db->get();
if ($query->num_rows() == 0) {
return FALSE;
}
foreach ($query->result() as $k => $row) {
$this->settings[$row->key] = $row->value;
$arr[$row->key] = $row->value;
}
return $arr;
}
// ------------------------------------------------------------------------
/**
* 更改設置
*/
public function edit($key, $value) {
$this->_ci->db->where('key', $key);
$this->_ci->db->update($this->settings_db, array('value' => $value));
if ($this->_ci->db->affected_rows() == 0) {
return FALSE;
}
return TRUE;
}
// ------------------------------------------------------------------------
/**
* 新增設置
*/
public function insert($key, $value = '', $group = 'addon', $autoload = 'no') {
// 檢查是否已經(jīng)被添加的設置
$this->_ci->db->select('value')->from($this->settings_db)->where('key', $key);
$query = $this->_ci->db->get();
if ($query->num_rows() > 0) {
return $this->edit($key, $value);
}
$data = array('key' => $key, 'value' => $value, 'group' => $group, 'autoload' => $autoload, );
$this->_ci->db->insert($this->settings_db, $data);
if ($this->_ci->db->affected_rows() == 0) {
return FALSE;
}
return TRUE;
}
// ------------------------------------------------------------------------
/**
* 刪除設置
*/
public function delete($key) {
$this->_ci->db->delete($this->settings_db, array('key' => $key));
if ($this->_ci->db->affected_rows() == 0) {
return FALSE;
}
return TRUE;
}
// ------------------------------------------------------------------------
/**
* 刪除設置組及成員配置
*/
public function delete_group($group) {
$this->_ci->db->delete($this->settings_db, array('group' => $group));
if ($this->_ci->db->affected_rows() == 0) {
return FALSE;
}
return TRUE;
}
}
/* End of file Setting.php */
/* Location: ./application/libraries/Setting.php */
最后,打開application/config/config.php,新增
/** * 系統(tǒng)配置表名 */ $config['settings_table'] = "system_settings";
希望本文所述對大家基于Codeigniter框架的PHP程序設計有所幫助。
- CI(CodeIgniter)模型用法實例分析
- CodeIgniter輔助之第三方類庫third_party用法分析
- CodeIgniter分頁類pagination使用方法示例
- CodeIgniter圖像處理類的深入解析
- codeigniter中測試通過的分頁類示例
- 使用CodeIgniter的類庫做圖片上傳
- Codeigniter整合Tank Auth權限類庫詳解
- CodeIgniter基于Email類發(fā)郵件的方法
- CodeIgniter擴展核心類實例詳解
- php實現(xiàn)仿寫CodeIgniter的購物車類
- Codeigniter的dom類用法實例
- CI框架(CodeIgniter)公共模型類定義與用法示例
相關文章
解決thinkphp5未定義變量會拋出異常,頁面錯誤,請稍后再試的問題
今天小編就為大家分享一篇解決thinkphp5未定義變量會拋出異常,頁面錯誤,請稍后再試的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-10-10
Zend Framework教程之Application和Bootstrap用法詳解
這篇文章主要介紹了Zend Framework教程之Application和Bootstrap用法,結合實例形式詳細分析了Application和Bootstrap的功能,使用技巧與相關注意事項,需要的朋友可以參考下2016-03-03
windwos下使用php連接oracle數(shù)據(jù)庫的過程分享
這篇文章主要介紹了windwos下使用php連接oracle數(shù)據(jù)庫的過程分享,講解了php連接oracle的必要條件、代碼實例以及錯誤排查等,需要的朋友可以參考下2014-05-05

