自动增加字母数字字符php

时间:2011-03-23 15:15:11

标签: php alphanumeric automatic-properties

是否可以使用php自动增加一个字母数字,所以它看起来像:

AB001
AB002
...
...
BA001
...
...
ZZ001

然后需要将此代码添加到mysql中,我在想一个varchar(5)。

干杯,

1 个答案:

答案 0 :(得分:7)

试试看

$x = 'AA998';
for($i = 0; $i < 10; $i++) {
    echo $x++,'<br />';
}

修改

反转字母和数字

$x = '000AY';
for($i = 0; $i < 10; $i++) {
    echo $x++,'<br />';
}

或ZZ999后的逆转

$x = 'ZZ998';
for($i = 0; $i < 10; $i++) {
    $x++;
    if (strlen($x) > 5)
        $x = '000AA';
    echo $x,'<br />';
}