cakephp 在PHP中生成唯一ID

kkih6yb8  于 2022-11-12  发布在  PHP
关注(0)|答案(2)|浏览(182)

我想在我的项目中创建唯一的id。我已经用过这个

$key = md5(microtime().rand());

但我想创建这样的唯一id:HPSEMP001,依此类推,HPSEMP002HPSEMP003
我无法做到这一点,请帮助我我是PHP新手

lmvvr0a8

lmvvr0a81#

您可以创建递归函数来生成随机数,如果数据库中有可用的随机数,也会在数据库中检查该随机数。
在我的示例中,我使用以下代码为客户创建了不同的随机departmentCode:

/**
 * Generate Random number and check if it is exist or not
 */
public function checkAndGenerateRandomNumber($customerId) {
    $number = sprintf("%04s", rand(1,9999));
    $response = ClassRegistry::init('Department')->find('first', array('conditions' => array('Department.customer_id' => $customerId, 'Department.code' => $number)));  
    if(isset($response) && !empty($response)) {
        $this->checkAndGenerateRandomNumber($customerId);
    } else {
        return $number;
    }
}
nszi6y05

nszi6y052#

我是一个初学者,但我已经尝试了这个方法,它很有效:

$num = 0;
global $num;

function new_id() {
    global $num;
    return 'HPSEMP' . sprintf("%03d", $num++); 
}

函数调用示例:

for ($i = 0; $i < 1500; $i++) {
    $new_id = new_id();
    echo "<br>$new_id";
}

输出量:

HPSEMP000
HPSEMP001
HPSEMP002
HPSEMP003
.
.
.
HPSEMP997
HPSEMP998
HPSEMP999
HPSEMP1000

或者,如果您想将代码保存在数据库或文件中,我还没有尝试过这种方法,但它应该可以工作:

function new_id($num) {
        $num++;
        // * Code to save new number value in file or database
        return 'HPSEMP' . sprintf("%03d", $num++); 
    }

// * Code to retrieve id number from file or database and store it to $num
// * $num = previously stored id number
$new_id = new_id($num);

相关问题