Skip to content

Instantly share code, notes, and snippets.

@cp-sumi-k
Last active May 19, 2022 11:05
Show Gist options
  • Save cp-sumi-k/a6453b22df885b4c62c450511ecf7491 to your computer and use it in GitHub Desktop.
Save cp-sumi-k/a6453b22df885b4c62c450511ecf7491 to your computer and use it in GitHub Desktop.
<?php
# encode
echo str_rot13("We celebrate differences!!");
# Output 1 : Jr pryroengr qvssreraprf!!
# decode
echo str_rot13("Jr pryroengr qvssreraprf!!");
# Output 2 : We celebrate differences!!
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment