API16

JString/strtolower: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== 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, Armen...
 
m clean up
Line 2: Line 2:
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
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


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JString/strtolower|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JString/strtolower}}
 
{{subst:Description:JString/strtolower}}


===Syntax===
===Syntax===
Line 37: Line 35:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JString/strtolower|Edit See Also]]<nowiki>]</nowiki>
{{subst:SeeAlso:JString/strtolower}}
</span>
{{SeeAlso:JString/strtolower}}


===Examples===
===Examples===

Revision as of 14:28, 24 March 2017

Description

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


{{subst:Description:JString/strtolower}}

Syntax

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

Returns

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

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

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


{{subst:SeeAlso:JString/strtolower}}

Examples

<CodeExamplesForm />