本文整理汇总了PHP中aql::get_decrypt_key方法的典型用法代码示例。如果您正苦于以下问题:PHP aql::get_decrypt_key方法的具体用法?PHP aql::get_decrypt_key怎么用?PHP aql::get_decrypt_key使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类aql
的用法示例。
在下文中一共展示了aql::get_decrypt_key方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __set
/**
* Magic Setter -- sets values to $this->_data
* If $name looks like an ide, the ID version is set
* Adds to errors if setting an invalid property
*
* @param string $name
* @param mixed $value
* @return Model $this
*/
public function __set($name, $value)
{
// check to see if this is a valid property or IDE
$is_ide = preg_match('/_ide$/', $name);
// if this is property does not exist we add it as a property to the object
if (!$this->propertyExists($name)) {
$this->addProperty($name);
}
// cast to array or to ModelArrayObject as necessary
$value = $this->prepSetValue($value);
$this->_data[$name] = $value;
// if is IDE, add as an ID as well
if ($is_ide) {
$key = aql::get_decrypt_key($name);
// decrypt ide
$n_name = substr($name, 0, -1);
// remove e (from ide)
$this->_data[$n_name] = decrypt($value, $key);
}
return $this;
}
示例2: getFilterParamArgs
/**
* Gets the proper method name and args to pass to it
* @param string $value
* @param string $operator
* @param string $property
* @return array [method arg]
*/
protected static function getFilterParamArgs($value, $operator, $property)
{
if (!is_numeric($value)) {
$decrypted = decrypt($value, aql::get_decrypt_key($property . 'e'));
if ($decrypted) {
$value = $decrypted;
} else {
$property = $operator;
}
}
return array('set_' . $property, array($value));
}