API16

JString/strtoupper

From Joomla! Documentation

< API16:JString
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

The "API16" 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 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



Syntax[edit]

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

Returns[edit]

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

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

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



Examples[edit]

Code Examples[edit]