PHP

str_rot13

str_rot13

(PHP 4 >= 4.2.0, PHP 5, PHP 7)

str_rot13 - 对字符串执行rot13转换

描述

string str_rot13 ( string $str )

str参数执行ROT13编码并返回结果字符串。

ROT13编码只需将字母中的每个字母移动13个位置,而不改变非alpha字符。编码和解码由相同的函数完成,传递一个编码的字符串作为参数将返回原始版本。

参数

str

输入字符串。

返回值

返回给定字符串的ROT13版本。

例子

示例#1 str_rot13()示例

<?php echo str_rot13('PHP 4.3.0' // CUC 4.3.0 ?>

← str_replace

str_shuffle →