PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function encryptLettersToNumbers($input) { function shiftString($str, $shift) { $length = strlen($str); $shift = $shift % $length; // Чтобы избежать лишних циклов return substr($str, $shift) . substr($str, 0, $shift); } // Пример использования $input = "abcdef"; $shifted = shiftString($input, 2); echo $shifted; $output = ''; $input = strtolower($input); for ($i = 0; $i < strlen($input); $i++) { $char = $input[$i]; if (ctype_alpha($char)) { $number = ord($char) - ord('a') + 1; $output .= $number . ' '; } else { $output .= $char; } } return trim($output); } $input = "dimon"; $encrypted = encryptLettersToNumbers($input); echo $encrypted;
Show:  
Copy Clear