PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function encryptLettersToNumbers($input) { $output = ''; $input = strtolower($input); for ($i = 0; $i < strlen($input); $i++) { $char = $input[$i]; if (ctype_alpha($char)) { $number = ord($char) - ord('a') -$n; $output .= $number . ' '; } else { $output .= $char; } } return trim($output); } $input = "arab"; $encrypted = encryptLettersToNumbers($input); echo $encrypted;
Show:  
Copy Clear