API15

JString/strcasecmp

From Joomla! Documentation

< API15:JString

The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

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

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

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

Returns[edit]

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

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

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

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]