如何用字母表中的 +n 对应对象替换字符串中的字母?
例如,将每个字符替换为其 +4 对应对象,如下所示:
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
↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓
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
所以,如果我有字符串johnny
,它应该变成nslrrc
.
<?php
$str="abcdefghijklmnopqrstuvwxyz";
$length=strlen($str);
$ret = "";
$n=5;
$n=$n-1;
for($i = 0, $l = strlen($str); $i < $l; ++$i)
{
$c = ord($str[$i]);
if (97 <= $c && $c < 123) {
$ret.= chr(($c + $n + 7) % 26 + 97);
} else if(65 <= $c && $c < 91) {
$ret.= chr(($c + $n + 13) % 26 + 65);
} else {
$ret.= $str[$i];
}
}
echo $ret;
?>
这是一种方式:
<?php
$newStr = "";
$str = "johnny";
define('DIFF', 4);
for($i=0; $i<strlen($str); $i++) {
$newStr .= chr((ord($str[$i])-97+DIFF)%26+97);
}
您可以使用以下命令进行逐字符替换strtr()
:
$shiftBy = 4;
$alphabet = 'abcdefghijklmnopqrstuvwxyz';
$newAlpha = substr($alphabet, $shiftBy) . substr($alphabet, 0, $shiftBy);
echo strtr("johnny", $alphabet, $newAlpha);
// nslrrc
当然,这假设所有小写字母都与您的示例一样。资本使事情复杂化。
http://codepad.viper-7.com/qNLli2
奖励:也适用于负转变
做一个字母数组。对于数组[$key] 值中的每个字母,回显数组[$key+4]。如果 $key+4 大于数组的大小,做一些基本的计算并转发它开始。