使用PHP

时间:2015-05-24 13:36:35

标签: php regex random

我有一个在我的服务器中请求密钥的移动应用程序,密钥结构包含7个字符,如下所示:

@ + [0-9] + [0-9] + [0-9] + [A-Z] + [A-Z] + [0-9] 

@876EU8, @668KI2 .......

虽然密钥最初有七个字符,在这种情况下是三个数字,两个字母和一个数字,进行数学运算时最多可以提供676,000个密钥。

为了解决这个问题,我在PHP中使用了这段代码:

function generateRandomString($length = 2) {
    $characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $charactersLength = strlen($characters);
    $randomString = '';
    for ($i = 0; $i < $length; $i++) {
        $randomString .= $characters[rand(0, $charactersLength - 1)];
    }
    return $randomString;
}

$randomKeyNumber = rand(100,999);
$randomKeyLetter = generateRandomString();
$randomKeyLast = rand(0,9);

$randomKey = "#".$randomKeyNumber.$randomKeyLetter.$randomKeyLast;//Returns a key like @876TG9 

下一个代码检查数据库中是否存在密钥,如果存在则随机另一个密钥,如果不存在,则将密钥插入数据库并将该密钥返回给我的应用程序

这段代码完美无缺,但假设系统已经生成了总共650,000个密钥,在这个代码的情况下,它总是生成相同的密钥,并且它生成一个不存在的密钥的可能性非常大小。

如何解决此问题并避免将来出现问题? (以有序的方式创建密钥没有问题,例如000AA0,000AA1,000AA2,000AA3 .... 999ZZ9)

1 个答案:

答案 0 :(得分:1)

您可以做的是让PDO::query()发布SELECT COUNT(*)或只是SELECT *语句,其中包含您已添加的所有密钥,然后使用PDOStatement::fetchColumn()检索将返回的行数(即在这种情况下,所有这些行)

这是一个手动的例子

<?php
$sql = "SELECT COUNT(*) FROM Keys";
if ($res = $conn->query($sql)) {

    /* Check the number of rows that match the SELECT statement */
  if ($res->fetchColumn() > 0) {

        /* Issue the real SELECT statement and work with the results */
         $sql = "SELECT name FROM fruit WHERE calories > 100";
       foreach ($conn->query($sql) as $row) {
           print "Name: " .  $row['NAME'] . "\n";
         }
    }
    /* No rows matched -- do something else */
  else {
      print "No rows matched the query.";
    }
}

$res = null;
$conn = null;
?>

这是您的案例所需的代码:

<?php
$sql = "SELECT * From Keys";

if ($res = $conn->query($sql)) {

    /* Check the number of rows that match the SELECT statement */
  if ($res->fetchColumn() > 0) {

        /* and then you get the id of the last one on the list, and to that one you add 1 */
         $last_id = $conn->lastInsertId();
         $new_id = $last_id + 1;
/* then you insert that in some place inside the key itself, that way you don't need to worry than two keys can be equal */
    }

  else {
      /* No rows matched, just create a key and add to the database here */
    }
}
¿>

或者你可以在PDO中将查询SELECT语句与countRows结合使用,它在便携式应用程序和/或数据库中不会一直有效,但我们不知道有关您的应用的更多信息,我们无法知道这是否会奏效。

PS。不要使用rand()。请改用mt_rand()。使用服务器的资源效率更高;)