summaryrefslogtreecommitdiff
path: root/include/utf8/strrev.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/utf8/strrev.php')
-rw-r--r--include/utf8/strrev.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/utf8/strrev.php b/include/utf8/strrev.php
new file mode 100644
index 0000000..ae9c32b
--- /dev/null
+++ b/include/utf8/strrev.php
@@ -0,0 +1,22 @@
+<?php
+
+/**
+* @version $Id: strrev.php,v 1.1 2006/02/25 13:50:17 harryf Exp $
+* @package utf8
+* @subpackage strings
+*/
+
+/**
+* UTF-8 aware alternative to strrev
+* Reverse a string
+* @param string UTF-8 encoded
+* @return string characters in string reverses
+* @see http://www.php.net/strrev
+* @package utf8
+* @subpackage strings
+*/
+function utf8_strrev($str)
+{
+ preg_match_all('/./us', $str, $ar);
+ return implode(array_reverse($ar[0]));
+}