| // | Aidan Lister | // +----------------------------------------------------------------------+ // // $Id$ /** * Replace str_rot13() * * @category PHP * @package PHP_Compat * @link http://php.net/function.str_rot13 * @author Alan Morey * @author Aidan Lister * @version $Revision: 1.4 $ * @since PHP 4.0.0 */ if (!function_exists('str_rot13')) { function str_rot13($str) { $from = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $to = 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM'; return strtr($str, $from, $to); } } ?>