本文整理汇总了PHP中Authenticator::generate方法的典型用法代码示例。如果您正苦于以下问题:PHP Authenticator::generate方法的具体用法?PHP Authenticator::generate怎么用?PHP Authenticator::generate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Authenticator
的用法示例。
在下文中一共展示了Authenticator::generate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: db_iconv
$strregion[23] = "EU";
$auth_moren = 0;
if ($logincheck == 0) {
$authaddbyservererrorid = 3;
} else {
if (check_data("letters_code")) {
$postcode = db_iconv("letters_code");
if (md5(strtolower($postcode)) == $_SESSION['letters_code']) {
if (check_data('authname') && check_data('region') && check_data('selectpic')) {
$region = db_iconv('region', "post", TRUE, true);
$authname = db_iconv('authname', "post", TRUE, true);
$selectpic = db_iconv('selectpic', "post", TRUE, true);
if (checkauthname($authname) && checkauthregion($region) && checkauthselectpic($selectpic)) {
$region = $strregion[$region];
try {
$auth = @Authenticator::generate($region);
$authserial = $auth->serial();
$authserect = $auth->secret();
$authrestorecode = $auth->restore_code();
if (isset($_POST['morenauthset'])) {
if ($_POST['morenauthset'] == "on") {
$sql = "UPDATE `authdata` SET `auth_moren`=0 WHERE `user_id`='{$user_id}' AND `auth_moren`=1";
update($sql);
$auth_moren = 1;
}
}
if (queryValue("SELECT COUNT(*) FROM `authdata` WHERE `user_id`='{$user_id}' AND `auth_moren`=1") == 0) {
$auth_moren = 1;
}
if (is_null($authserial)) {
$authaddbyservererrorid = 5;
示例2: usage
<?php
require_once 'classes/Authenticator.php';
function usage()
{
echo "Usage:\r\n";
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;