JString/ucfirst
From Joomla! Documentation
< API16:JString
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 ucfirst Make a string's first character uppercase
Syntax[edit]
static ucfirst($str)
Parameter Name | Default Value | Description |
---|---|---|
$str |
Returns[edit]
string with first character as upper case (if applicable)
Defined in[edit]
libraries/joomla/utilities/string.php
Importing[edit]
jimport( 'joomla.utilities.string' );
Source Body[edit]
public static function ucfirst($str)
{
jimport('phputf8.ucfirst');
return utf8_ucfirst($str);
}
Examples[edit]
Code Examples[edit]