API17

JString::strcmp

From Joomla! Documentation

Revision as of 21:44, 27 April 2011 by Doxiki2 (talk | contribs) (Updated to r1448:247ba8d88526)

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::strcmp[edit]

Description[edit]

UTF-8/LOCALE aware alternative to strcmp A case sensitive string comparison.

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

public static function strcmp (
        $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 247 of libraries/joomla/utilities/string.php
  • Referenced by

See also[edit]

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

User contributed notes[edit]

<CodeExamplesForm />