在PHP中用第n个字母字符替换字符串字母

时间:2013-03-26 21:53:56

标签: php string replace

如何用字母表中的+ n个响应者替换字符串中的字母?

例如,用+4 corespondent替换每个字符,如下所示:

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

4 个答案:

答案 0 :(得分:1)

<?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;
?>

DEMO 1 (Eg: abcdefghijklmnopqrstuvwxyz)

DEMO 2 (Eg: johhny)

答案 1 :(得分:1)

这是一种方式:

<?php

$newStr = "";
$str = "johnny";

define('DIFF', 4);
for($i=0; $i<strlen($str); $i++) {        
    $newStr .= chr((ord($str[$i])-97+DIFF)%26+97);
}

答案 2 :(得分:1)

您可以使用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

奖金:也适用于负面转变

答案 3 :(得分:-1)

制作一系列字母。对于数组[$ key]值中的每个字母,echo数组[$ key + 4]。如果$ key + 4大于数组的大小,请进行一些基本计算并转发它以开始。