<?phpfunction reout($value) { return htmlspecialchars( get_magic_quotes_gpc() ? stripslashes($value) : $value );}
<?phpfunction oneof() { foreach (func_get_args() as $arg) { if ($arg) return $arg; }}