Tagged 0.7.5
[scuttle] / includes / utf8 / strcasecmp.php
diff --git a/includes/utf8/strcasecmp.php b/includes/utf8/strcasecmp.php
new file mode 100644 (file)
index 0000000..c26882f
--- /dev/null
@@ -0,0 +1,26 @@
+<?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);
+}
+

Benjamin Mako Hill || Want to submit a patch?