3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = "Фадэь ёэ хфигцаёачр гэытиочр!"; function rotn($string, $n) { $alphabet = array( 1 => "а", 2 => "б", 3 => "в", 4 => "г", 5 => "д", 6 => "е", 7 => "ё", 8 => "ж", 9 => "з", 10 => "и", 11 => "й", 12 => "к", 13 => "л", 14 => "м", 15 => "н", 16 => "о", 17 => "п", 18 => "р", 19 => "с", 20 => "т", 21 => "у", 22 => "ф", 23 => "х", 24 => "ц", 25 => "ч", 26 => "ш", 27 => "щ", 28 => "ъ", 29 => "ы", 30 => "ь", 31 => "э", 32 => "ю", 33 => "я" ); $alphabet_r = array_flip($alphabet); $string = strtolower($string); foreach (str_split(strtolower($string), 1) as $character) { die(var_dump($alphabet_r)); //echo $character; echo $alphabet[$alphabet_r[$character] + $n]; } } rotn($string, 1);
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
array(33) { ["а"]=> int(1) ["б"]=> int(2) ["в"]=> int(3) ["г"]=> int(4) ["д"]=> int(5) ["е"]=> int(6) ["ё"]=> int(7) ["ж"]=> int(8) ["з"]=> int(9) ["и"]=> int(10) ["й"]=> int(11) ["к"]=> int(12) ["л"]=> int(13) ["м"]=> int(14) ["н"]=> int(15) ["о"]=> int(16) ["п"]=> int(17) ["р"]=> int(18) ["с"]=> int(19) ["т"]=> int(20) ["у"]=> int(21) ["ф"]=> int(22) ["х"]=> int(23) ["ц"]=> int(24) ["ч"]=> int(25) ["ш"]=> int(26) ["щ"]=> int(27) ["ъ"]=> int(28) ["ы"]=> int(29) ["ь"]=> int(30) ["э"]=> int(31) ["ю"]=> int(32) ["я"]=> int(33) }
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: str_split() in /in/Su61V on line 19
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: str_split() in /in/Su61V on line 19
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: str_split() in /in/Su61V on line 19

preferences:
240.11 ms | 401 KiB | 372 Q