ROT13 Encode and Decode using PHP September 2, 2020 PHP 0 Comments 1350 Views str_rot13 function <?php $text = 'Hello'; $rot13 = str_rot13($text); echo $rot13.PHP_EOL; $text = str_rot13($rot13); echo $text;
Leave a Comment
Cancel reply