如何创建5位序列号

时间:2016-06-08 07:45:36

标签: php

在PHP中生成5位数序列号时遇到问题。 所有我想要的当用户调用PHP文件时它将生成00001然后下一次调用它将生成00002,依此类推。 然后在第二天它将重新生成00001,00002等等。 例如:对于今天,我想生成从00001到99999的序列5位数字,明天我想重新生成序列5位数字,就像昨天一样。

4 个答案:

答案 0 :(得分:4)

您需要使用sprintf

$num = 1;
echo sprintf("%'.05d\n", $num);

但最终,这将是一个字符串。不是数字。使用上面的代码,当您发送号码时,会发生以下情况:

for ($num = 1; $num <= 50; $num++)
    echo sprintf("%'.05d\n", $num);

以上将给你:

00001  // type: String. Use intval() to get the integral value.
00002  // type: String. Use intval() to get the integral value.
00003  // type: String. Use intval() to get the integral value.

等等。好消息是,使用像getSequence()

这样的函数
function getSequence($num) {
  return sprintf("%'.05d\n", $num);
}

并在号码上调用该函数:

$num = 756;
getSequence($num); // 00756

<强>输出

00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050

小提琴:https://ideone.com/4MpnZe

更新: OP希望我们编写代码。但是它就在这里。

要回答您的问题,您需要一个服务器端计数器来表示日期。让我们说,今天的日期可以通过:

date("Ymd", strtotime("now")); // 20160608

我们这样做:

$today = date("Ymd", strtotime("now"));
// Check if there's a file with the name exists:
if (file_exists($today)) {
  // Nothing to do. :)
} else {
  file_put_contents($today, 0);
}
$count = file_get_contents($today);
$count++;
echo sprintf("%'.05d\n", $count);

这将获得当天,每天和第二天的计数,以1开头。

答案 1 :(得分:0)

有了你,你需要将值存储在数据库/文件中,并且使用day chagne重置数据库/文件。

$i = readFromDBorFile();
$num = sprintf("%'.05d&nbsp;", $i++);

答案 2 :(得分:0)

您需要以某种方式保存计数器,以便下一个请求不返回相同的数字。最简单的解决方案是将其保存到本地文件中。

试试这个:

v <- c("1 Months8 Days", "1 Years","10 Days","10 Months","10 Months1 Days")

periods <- c(1, 1/12, 1/365)
names(periods) <- c('Years','Months','Days')
ages <- rep.int(0,length(v))
for(p in names(periods)){
  matches <- regmatches(v,gregexpr(paste0("[[:digit:]]+(?= ",p,")"), v,perl=TRUE))
  ages <- ages + sapply(matches,function(x) ifelse(length(x)== 0,0,as.numeric(x)*periods[p]))
}

> ages
[1] 0.10525114 1.00000000 0.02739726 0.83333333 0.83607306

答案 3 :(得分:0)

/ *创建4位数的序列号         Nb必须先创建文件     * /

function sequence(){
    $letter = ['A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];

    $content = file_get_contents("seq_file");
    $content = file_get_contents("seq_file") + 1 ;
    $letter_number = file_get_contents("letter_number");

    if ($content ==9999){

        file_put_contents("seq_file",0);
        $content = 0 ;
        $letter_number = $letter_number + 1 ;
        file_put_contents("letter_number",$letter_number);
    }
    file_put_contents("seq_file",$content);

       return sprintf("%s-%04d",$letter[$letter_number],$content); // A-0252
} // end of function sequence()



if(file_exists("seq_file") &&  file_exists("letter_number")){
    echo sequence();
} else {
    file_put_contents("letter_number",0);
    file_put_contents("seq_file",0);
    echo sequence();

}