| // | Aidan Lister | // +----------------------------------------------------------------------+ // // $Id: str_rot13.php,v 1.4 2005/01/26 04:55:13 aidan Exp $ /** * 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); } } ?>