summaryrefslogtreecommitdiff
path: root/include/utf8/strcasecmp.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/utf8/strcasecmp.php')
-rw-r--r--include/utf8/strcasecmp.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/utf8/strcasecmp.php b/include/utf8/strcasecmp.php
new file mode 100644
index 0000000..423f443
--- /dev/null
+++ b/include/utf8/strcasecmp.php
@@ -0,0 +1,27 @@
+<?php
+
+/**
+* @version $Id: strcasecmp.php,v 1.1 2006/02/25 13:50:17 harryf Exp $
+* @package utf8
+* @subpackage strings
+*/
+
+/**
+* UTF-8 aware alternative to strcasecmp
+* A case insensivite string comparison
+* Note: requires utf8_strtolower
+* @param string
+* @param string
+* @return int
+* @see http://www.php.net/strcasecmp
+* @see utf8_strtolower
+* @package utf8
+* @subpackage strings
+*/
+function utf8_strcasecmp($strX, $strY)
+{
+ $strX = utf8_strtolower($strX);
+ $strY = utf8_strtolower($strY);
+
+ return strcmp($strX, $strY);
+}