Skip to content

Instantly share code, notes, and snippets.

@msisaifu
Last active April 19, 2019 16:03
Show Gist options
  • Save msisaifu/fa982d3408355cfd48182d7ccddeefb2 to your computer and use it in GitHub Desktop.
Save msisaifu/fa982d3408355cfd48182d7ccddeefb2 to your computer and use it in GitHub Desktop.
function reverseCase($string) {
$length = strlen($string);
for($i = 0; $i < $length; $i++) {
if(ctype_upper ($string[$i])) {
echo strtolower($string[$i]);
} else {
echo strtoupper($string[$i]);
}
}
}
reverseCase('hello Bangladesh');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment