Query: str_rot13
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
STR_ROT13(3) 1 STR_ROT13(3) str_rot13 - Perform the rot13 transform on a stringSYNOPSISstring str_rot13 (string $str)DESCRIPTIONPerforms the ROT13 encoding on the $str argument and returns the resulting string. The ROT13 encoding simply shifts every letter by 13 places in the alphabet while leaving non-alpha characters untouched. Encoding and decoding are done by the same function, passing an encoded string as argument will return the original version.PARAMETERSo $str - The input string.RETURN VALUESReturns the ROT13 version of the given string.EXAMPLESExample #1 str_rot13(3) example <?php echo str_rot13('PHP 4.3.0'); // CUC 4.3.0 ?> PHP Documentation Group STR_ROT13(3)
Related Man Pages |
---|
addslashes(3) - php |
parse_str(3) - php |
ucwords(3) - php |
mb_strimwidth(3) - php |
strlen(3) - php |
Similar Topics in the Unix Linux Community |
---|
PHP help |