Source Code:
(back to article)
<?php $string = "Hello, World!"; $encoded_string = str_rot13($string); echo $encoded_string; // Output: Uryyb, Jbeyq! ?>
Result:
Report an issue