API15

API15:JString/strtoupper

From Joomla! Documentation

Revision as of 22:26, 22 March 2010 by Doxiki (talk | contribs) (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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

[Edit Descripton]

Template:Description:JString/strtoupper

Syntax

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

function strtoupper($str){
        return utf8_strtoupper($str);
}

[Edit See Also] Template:SeeAlso:JString/strtoupper

Examples

<CodeExamplesForm />