本文整理汇总了PHP中XCube_Utils::encrypt方法的典型用法代码示例。如果您正苦于以下问题:PHP XCube_Utils::encrypt方法的具体用法?PHP XCube_Utils::encrypt怎么用?PHP XCube_Utils::encrypt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XCube_Utils
的用法示例。
在下文中一共展示了XCube_Utils::encrypt方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setConfValueForInput
/**
* Set a config value
*
* @param mixed &$value Value
* @param bool $force_slash
*/
function setConfValueForInput(&$value, $force_slash = false)
{
switch ($this->getVar('conf_valuetype')) {
case 'array':
if (!is_array($value)) {
$value = explode('|', trim($value));
}
$this->setVar('conf_value', serialize($value), $force_slash);
break;
case 'text':
$this->setVar('conf_value', trim($value), $force_slash);
break;
case 'encrypt':
$this->setVar('conf_value', XCube_Utils::encrypt(trim($value)), $force_slash);
break;
default:
$this->setVar('conf_value', $value, $force_slash);
break;
}
}
示例2: update
function update(&$configArr)
{
foreach (array_keys($configArr) as $key) {
$value = $this->get($configArr[$key]->get('conf_name'));
if ($configArr[$key]->get('conf_valuetype') == 'array') {
if (is_array($value)) {
$configArr[$key]->set('conf_value', serialize($value));
} else {
$configArr[$key]->set('conf_value', serialize(explode("|", $value)));
}
} else {
if ($configArr[$key]->get('conf_valuetype') == 'encrypt') {
$configArr[$key]->set('conf_value', XCube_Utils::encrypt($value));
} else {
$configArr[$key]->set('conf_value', $value);
}
}
}
}