API15

JString/strtolower

From Joomla! Documentation

< API15:JString
Revision as of 13:51, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)

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 strtlower Make a string lowercase Note: The concept of a characters "case" only exists is some alphabets such as Latin, Greek, Cyrillic, Armenian and archaic Georgian - it does not exist in the Chinese alphabet, for example. See Unicode Standard Annex #21: Case Mappings

[<! removed edit link to red link >]

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

Syntax[edit]

strtolower($str)
Parameter Name Default Value Description
$str

Returns[edit]

mixed either string in lowercase or FALSE is UTF-8 invalid

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

function strtolower($str){
        return utf8_strtolower($str);
}

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

Examples[edit]

<CodeExamplesForm />