我想在它前面做一个带有标准前缀的计数器:202000,然后计算 2020001、2020002、2020003 等。并且这些数据必须保存在我服务器上的文件或数据库或 txt 文件中,但不会事情。我尝试了很多,但我可以做到。我对 PHP 很陌生。
我现在有了这段代码,但我有一些问题,所以只保存了最后一个数字,并且前缀是否被计数器替换,如果你超过 10,你会得到 2020010,我想要 20200010。无论如何,这是我的代码:
<!DOCTYPE html>
<html dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php
$file = 'counter.txt';
// default the counter value to 1
$before = uniqid('202000');
$counter = 1;
// add the previous counter value if the file exists
if (file_exists($file)) {
$counter += file_get_contents($file);
}
// write the new counter value to the file
file_put_contents($file, $counter);
echo $before + $counter;
?>
</body>
</html>
有人可以帮我吗?
汪汪一只猫
收到一只叮咚