Encode and decode a string:
The str_rot13() function performs the ROT13 encoding on a string.
The ROT13 encoding shifts every letter 13 places in the alphabet. Numeric and non-alphabetical characters remains untouched.
Tip: Encoding and decoding are done by the same function. If you pass an encoded string as argument, the original string will be returned.
| Parameter | Description |
|---|---|
| string | Required. Specifies the string to encode |
| Return Value: | Returns the ROT13 version of the encoded string |
|---|---|
| PHP Version: | 4+ |
| Changelog: | Before PHP 4.3, the string was also modified, as if it was passed by reference |
Complete PHP String Reference
Your message has been sent to W3Schools.