本文整理匯總了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);
}
}
}
}