コード例 #1
0
/**
 * 加密密码
 * @param string $pwd 密码
 * @return string 加密的密码
 */
function EncodePwd($pwd)
{
    $p = new P();
    return $p->pwd($pwd);
}