+ 2
What do this function str_rot13?and explain by example
can you explain this code <?php $str="i love php"; $str=str_rot13($str); echo $str; ?>
1 Answer
+ 2
It prints out the string with every letter shifted 13 places in the alphabet.
can you explain this code <?php $str="i love php"; $str=str_rot13($str); echo $str; ?>