有一個字符串,其中包含字符[a-zA-Z0-9]
。這應該是26 * 2 + 10 = 62個可能性在一個字符和62^2在二。增加這種字符串的值的首選方法是什麼,以便'aA'變成'aB'等?有沒有PHP中的內置東西,可以幫助?如何增加PHP中的字母數字字符串?
我知道你可以增加一個字符串,但這只是小寫字母。本質上,結果應該以61爲增量從'a'到'aa'。
有一個字符串,其中包含字符[a-zA-Z0-9]
。這應該是26 * 2 + 10 = 62個可能性在一個字符和62^2在二。增加這種字符串的值的首選方法是什麼,以便'aA'變成'aB'等?有沒有PHP中的內置東西,可以幫助?如何增加PHP中的字母數字字符串?
我知道你可以增加一個字符串,但這只是小寫字母。本質上,結果應該以61爲增量從'a'到'aa'。
的@simshaun不要爲我工作。我檢查了文檔,發現可以爲你工作的基地(基地35)base_convert和「francesco [at] paladinux.net」的評論與一個函數在base65上工作。
因此該解決方案可以是:
轉換到B10 - >增量+1 - >轉化基地65
編輯1
談論轉換,我認爲爲base64編碼,所以我寫了這2個funcs使用base64編碼/解碼數字。 不幸的是,所使用的字符集有點大:[a-zA-Z0-9/+ =],但使用更高效的內部函數。
零 0是 「AA ==」
function nencode($in){
$res ="";
while(1){
$b = $in & 0xff;
$res = chr($b) . $res;
if($in > 0xff){
$in = $in >> 8;
} else {
break;
}
}
return base64_encode($res);
}
function ndecode($in){
$rv=0;
$res =base64_decode($in);
for($t = 0 ; $t < strlen($res) ; $t++){
if($t>0){
$rv = $rv << 8;
}
$c = ord($res{$t});
$rv |= $c;
}
return $rv;
}
試試這個功能:
<?php
function increment(&$string){
$last_char=substr($string,-1);
$rest=substr($string, 0, -1);
switch ($last_char) {
case '':
$next= 'a';
break;
case 'z':
$next= 'A';
break;
case 'Z':
$next= '0';
break;
case '9':
increment($rest);
$next= 'a';
break;
default:
$next= ++$last_char;
}
$string=$rest.$next;
}
//sample
$string='a';
for($i=1;$i<=128;$i++){
echo $string."<br>";
increment($string);
}
?>
我認爲這從根本上做你以後。
<?php
$chars = array('',
'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',
'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',
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
$increment1 = 0;
$increment2 = 0;
for ($i = 0; $i <= 200; $i++) {
if ($increment2 === 62) {
$increment1++;
$increment2 = 1;
} else {
$increment2++;
}
echo "{$chars[$increment1]}{$chars[$increment2]} ";
}
/*
Output:
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
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
0 1 2 3 4 5 6 7 8 9 aa ab ac ad ae af ag ah ai aj ak al
am an ao ap aq ar as at au av aw ax ay az aA aB aC aD aE
aF aG aH aI aJ aK aL aM aN aO aP aQ aR aS aT aU aV aW aX
aY aZ a0 a1 a2 a3 a4 a5 a6 a7 a8 a9 ba bb bc bd be bf bg
bh bi bj bk bl bm bn bo bp bq br bs bt bu bv bw bx by bz
bA bB bC bD bE bF bG bH bI bJ bK bL bM bN bO bP bQ bR bS
bT bU bV bW bX bY bZ b0 b1 b2 b3 b4 b5 b6 b7 b8 b9 ca cb
cc cd ce cf cg ch ci cj ck cl cm cn co
*/
我喜歡這一個。如何使用: ClassX :: increment('p04E7K',6); ClassX :: decrement('p04E7K',6);
代碼:
class ClassX {
public static $baseCharacters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
public static function increment($x, $digits)
{
$charList = static::$baseCharacters;
// completa cadeia de caracteres com o numero de digitos parametrizados
$x = trim($x);
if(strlen($x) < $digits) {
$x = str_pad($x, $digits, substr($charList, 0, 1), STR_PAD_LEFT);
}
$result = preg_split("//", $x, -1, PREG_SPLIT_NO_EMPTY);
// percorre a cadeia de caracteres de tras pra frente e incrementa o primeiro caractere possivel
for ($i = $digits - 1; $i >= 0; --$i)
{
$char = $result[$i];
$currentChar = strpos($charList, $char);
$nextCharPosition = $currentChar+1;
if($nextCharPosition < strlen($charList)) {
$nextChar = substr($charList, $nextCharPosition, 1);
$result[$i] = $nextChar;
break;
}
}
return implode('', $result);
}
public static function decrement($x, $digits)
{
$charList = static::$baseCharacters;
// completa cadeia de caracteres com o numero de digitos parametrizados
if(strlen($x) < $digits) {
$x = str_pad($x, $digits, substr($charList, 0, 1), STR_PAD_LEFT);
}
$result = preg_split("//", $x, -1, PREG_SPLIT_NO_EMPTY);
// percorre a cadeia de caracteres de tras pra frente e decrementa o primeiro caractere possivel
for ($i = $digits - 1; $i >= 0; --$i)
{
$char = $result[$i];
$currentChar = strpos($charList, $char);
$previousCharPosition = $currentChar-1;
if($previousCharPosition > -1) {
$previousChar = substr($charList, $previousCharPosition, 1);
$result[$i] = $previousChar;
// define os caracteres apos o decrementado para o ultimo caractere. ex: 3[00] > 2[99]
for ($j = $i + 1; $j < $digits && $i < $digits - 1; ++$j)
$result[$j] = substr($charList, strlen($charList)-1, 1);
break;
}
}
return implode('', $result);
}
}
我來到了這個問題,我也一直在尋找一種方式來生成自動遞增字母數字的唯一ID非常相似,我們在移動貨幣(M-PESA)在肯尼亞。 作爲參考,下面是該交易Screenshot showing sample MPESA transactions 我想離開這裏,如果有人也在尋找類似屬性的截圖:即 - 自動增量字母數字 - 以大寫 所有字符 - 字符串長度的自動調高一次用盡。 - 增量正是從那時候0到9 A到Z遞增數量的相鄰字符之前並@ phobia82的答案
function increment($string){
$last_char=substr($string,-1);
$rest=substr($string, 0, -1);
switch ($last_char) {
case '':
$next= 'A';
break;
case 'Z':
$next = '0';
$unique = increment($rest);
$rest = $unique;
break;
case '9':
$next= 'A';
break;
default:
$next = ++$last_char;
break;
}
$string=$rest.$next;
return $string;
}
+1的修改,有趣的這個問題。 – Giberno
我不知道PHP做了這件事,但我現在就做。 http://php.net/manual/en/language.operators.increment.php –
期望的進展是什麼?我的意思是,'a b c ... x y z A B C ... X Y Z 0 1 2 ... 7 8 9 aa'不是,顯然。那麼哪些字符變化最快,順序如何? –