本文整理匯總了PHP中zmf::writeSet方法的典型用法代碼示例。如果您正苦於以下問題:PHP zmf::writeSet方法的具體用法?PHP zmf::writeSet怎麽用?PHP zmf::writeSet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類zmf
的用法示例。
在下文中一共展示了zmf::writeSet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: actionAdd
public function actionAdd()
{
$this->checkPower('setConfig');
$type = zmf::filterInput($_POST['type'], 't', 1);
if ($type == '' or !in_array($type, array('baseinfo', 'upload', 'base', 'email'))) {
$type = 'baseinfo';
}
unset($_POST['type']);
unset($_POST['YII_CSRF_TOKEN']);
$configs = $_POST;
if (!empty($configs)) {
foreach ($configs as $k => $v) {
if (is_array($v)) {
$v = join(',', $v);
}
//組織出hash,根據變量、變量的值及分類的md5
$_hash = md5($k . $v . $type);
//如果能找到hash則說明該設置未變化
$_configInfo = Config::model()->find('`hash`=:hash', array(':hash' => $_hash));
if (!$_configInfo) {
//沒找到說明已更改或者不存在該設置
//根據name和classify判斷是否有該設置,沒有則新增,有則更新
$_detailInfo = Config::model()->find('`name`=:name AND classify=:type', array(':name' => $k, ':type' => $type));
if (!$_detailInfo) {
//新增
$data = array('name' => zmf::filterInput($k, 't'), 'value' => zmf::filterInput($v, 't'), 'classify' => zmf::filterInput($type, 't'), 'hash' => $_hash);
$model = new Config();
$model->attributes = $data;
$model->save();
} else {
//更新
Config::model()->updateByPk($_detailInfo['id'], array('value' => zmf::filterInput($v, 't'), 'hash' => $_hash));
}
} else {
//未做變化,不操作
}
}
}
//更新本地配置緩存
$_c = Config::model()->findAll();
$configs = CHtml::listData($_c, 'name', 'value');
zmf::writeSet($configs);
$this->redirect(array('config/index', 'type' => $type));
}