PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function replaceLettersWithNumbers($input) { $input = strtolower($input); $output = ""; for ($i = 0; $i < strlen($input); $i++) { $char = $input[$i]; if ($char >= 'a' && $char <= 'z') { $output .= (ord($char) - ord('a') - 1) . ' '; } else { $output .= $char . ' '; } } return trim($output); } $input = "test"; echo replaceLettersWithNumbers($input);
Show:  
Copy Clear