API15:JString/strcasecmp

From Joomla! Documentation

Jump to: navigation, search

Contents

Description

UTF-8 aware alternative to strcasecmp A case insensivite string comparison

[Edit Descripton]

Description:JString/strcasecmp

Syntax

strcasecmp($str1, $str2)
Parameter Name Default Value Description
$str1 string 1 to compare
$str2 string 2 to compare

Returns

int < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal.

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

function strcasecmp($str1, $str2)
{
        jimport('phputf8.strcasecmp');
        return utf8_strcasecmp($str1, $str2);
}

[Edit See Also] SeeAlso:JString/strcasecmp

Examples


Personal tools