本文整理汇总了PHP中api_Utils::DecodePassword方法的典型用法代码示例。如果您正苦于以下问题:PHP api_Utils::DecodePassword方法的具体用法?PHP api_Utils::DecodePassword怎么用?PHP api_Utils::DecodePassword使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api_Utils
的用法示例。
在下文中一共展示了api_Utils::DecodePassword方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: InitByDbRow
/**
* @param stdClass $oRow
*/
public function InitByDbRow($oRow)
{
$aMap = $this->getMap();
foreach ($aMap as $sKey => $aTypes) {
if (isset($aTypes[1]) && property_exists($oRow, $aTypes[1])) {
if ('password' === $aTypes[0]) {
$this->{$sKey} = api_Utils::DecodePassword($oRow->{$aTypes[1]});
} else {
if ('datetime' === $aTypes[0]) {
$iDateTime = 0;
$aDateTime = api_Utils::DateParse($oRow->{$aTypes[1]});
if (is_array($aDateTime)) {
$iDateTime = gmmktime($aDateTime['hour'], $aDateTime['minute'], $aDateTime['second'], $aDateTime['month'], $aDateTime['day'], $aDateTime['year']);
if (false === $iDateTime || $iDateTime <= 0) {
$iDateTime = 0;
}
}
$this->{$sKey} = $iDateTime;
} else {
if ('serialize' === $aTypes[0]) {
$this->{$sKey} = '' === $oRow->{$aTypes[1]} || !is_string($oRow->{$aTypes[1]}) ? '' : unserialize($oRow->{$aTypes[1]});
} else {
$this->{$sKey} = $oRow->{$aTypes[1]};
}
}
}
$this->FlushObsolete($sKey);
}
}
}