You've already forked joomla_test
first commit
This commit is contained in:
26
libraries/phputf8/strcasecmp.php
Normal file
26
libraries/phputf8/strcasecmp.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* @version $Id$
|
||||
* @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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user