Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

Copy Format Clear

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php function secretCode($text, $shift) { $result = ''; for ($i = 0; $i < strlen($text); $i++) { $char = $text[$i]; if (ctype_alpha($char)) { $shifted = ord($char) + $shift; if (ctype_upper($char)) { $result .= chr((($shifted - 65) % 26) + 65); } else { $result .= chr((($shifted - 97) % 26) + 97); } } else { $result .= $char; } } return $result; } echo secretCode('AZ', 3);
Copy Clear