JString/strtoupper: Difference between revisions
From Joomla! Documentation
New page: ===Description===
UTF-8 aware alternative to strtoupper Make a string uppercase Note: The concept of a characters "case" only exists is some alphabets such as Latin, Greek, Cyrillic, Arme... |
m clean up |
||
| Line 2: | Line 2: | ||
UTF-8 aware alternative to strtoupper Make a string uppercase 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 strtoupper Make a string uppercase 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 | ||
{{Description:JString/strtoupper}} | |||
{{subst:Description:JString/strtoupper}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 37: | Line 35: | ||
</source> | </source> | ||
{{subst:SeeAlso:JString/strtoupper}} | |||
{{SeeAlso:JString/strtoupper}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:28, 24 March 2017
Description
UTF-8 aware alternative to strtoupper Make a string uppercase 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/strtoupper}}
Syntax
static strtoupper($str)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str |
Returns
mixed either string in uppercase or FALSE is UTF-8 invalid
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function strtoupper($str){
return utf8_strtoupper($str);
}
{{subst:SeeAlso:JString/strtoupper}}
Examples
<CodeExamplesForm />