API16:JString/ucfirst
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
UTF-8 aware alternative to ucfirst Make a string's first character uppercase
Syntax
static ucfirst($str)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str |
Returns
string with first character as upper case (if applicable)
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function ucfirst($str) { jimport('phputf8.ucfirst'); return utf8_ucfirst($str); }
[Edit See Also] SeeAlso:JString/ucfirst
Examples
<CodeExamplesForm />
