API17

JString::strcasecmp

From Joomla! Documentation

Revision as of 17:17, 11 May 2013 by JoomlaWikiBot (talk | contribs) (→‎User contributed notes: moving preparation)

The "API17" 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.

Joomla 11.1 JString::strcasecmp[edit]

Description[edit]

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

Template:Description:JString::strcasecmp [Edit Descripton]

public static function strcasecmp (
        $str1
        $str2
        $locale=false
)
Parameter Type Default Description
$str1 string string 1 to compare
$str2 string string 2 to compare
$locale mixed false The locale used by strcoll or false to use classical comparison
  • Returns int < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal.
  • Defined on line 200 of libraries/joomla/utilities/string.php
  • Referenced by

See also[edit]

Template:SeeAlso:JString::strcasecmp [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />