本文整理汇总了PHP中Authenticator::factory方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::factory方法的具体用法?PHP Authenticator::factory怎么用?PHP Authenticator::factory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticator
的用法示例。
在下文中一共展示了Authenticator::factory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: queryRow
}
if (!is_null($user_id) && !is_null($authid)) {
$sql = "SELECT * FROM `authdata` WHERE `user_id`='{$user_id}' AND `auth_id`='{$authid}'";
$row = queryRow($sql);
}
if ($row) {
$time = date('Y-m-d H:i:s');
$region = $row['region'];
if ($region != "CN" && $region != "EU") {
$region = "US";
}
$sql = "SELECT * FROM `synctime` WHERE `region`='{$region}'";
$rowSYNC = queryRow($sql);
if (strtotime($time) - strtotime($rowSYNC['last_sync']) > 86400) {
$auth = Authenticator::factory($row['serial'], $row['secret']);
$sql = "UPDATE `synctime` SET `sync`=\"" . $auth->getsync() . "\" ,`last_sync`=\"{$time}\" WHERE `region`='{$region}'";
update($sql);
} else {
$auth = Authenticator::factory($row['serial'], $row['secret'], $rowSYNC['sync']);
}
//显示数据
header('Content-type: text/json');
$wait = $auth->sleeptime() / 1000;
$arr = array('code' => $auth->code(), 'time' => $wait);
echo json_encode($arr);
} else {
header('Content-type: text/json');
$wait = 0;
$arr = array('code' => "@@@@@@", 'time' => $wait);
echo json_encode($arr);
}
示例2: isset
echo "\tphp php-bma.php new region\r\n";
echo "\tphp php-bma.php generate serial secret\r\n";
echo "\tphp php-bma.php restore serial restore_code\r\n\r\n";
}
$auth = false;
$method = isset($argv[1]) ? $argv[1] : null;
switch ($method) {
case "new":
if (count($argv) == 3) {
$auth = Authenticator::generate($argv[2]);
$message = "New Authenticator requested";
}
break;
case "generate":
if (count($argv) == 4) {
$auth = Authenticator::factory($argv[2], $argv[3]);
$message = "Generate codes";
}
break;
case "restore":
if (count($argv) == 4) {
$auth = Authenticator::restore($argv[2], $argv[3]);
$message = "Restore requested";
}
break;
}
if ($auth === false) {
usage();
exit(1);
}
echo $message . " - Serial: " . $auth->serial() . " Secret: " . $auth->secret() . " Restore: " . $auth->restore_code() . "\r\n\r\n";