本文整理汇总了PHP中Crypto::cust_decrypt方法的典型用法代码示例。如果您正苦于以下问题:PHP Crypto::cust_decrypt方法的具体用法?PHP Crypto::cust_decrypt怎么用?PHP Crypto::cust_decrypt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Crypto
的用法示例。
在下文中一共展示了Crypto::cust_decrypt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getClientHubs
public function getClientHubs($username)
{
if (isset($username)) {
$stmt = $this->db_connection->prepare('SELECT id FROM clients WHERE username = ?');
if ($stmt->execute(array($username))) {
$userid = null;
if ($userid = $stmt->fetchColumn()) {
if ($stmt = $this->db_connection->query('SELECT * FROM hubs WHERE client_id_fk = ' . $userid)) {
if ($hubs = $stmt->fetchAll(PDO::FETCH_ASSOC)) {
$allHubs = array();
foreach ($hubs as $hub) {
if (isset($hub['password'])) {
// Decrypt the hub password
$hub['password'] = Crypto::cust_decrypt($hub['password']);
}
$allHubs[] = $hub;
}
return $allHubs;
}
}
}
}
}
return array();
}