API15:JString/ucfirst
From Joomla! Documentation
Description
UTF-8 aware alternative to ucfirst Make a string's first character uppercase
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
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
function ucfirst($str)
{
jimport('phputf8.ucfirst');
return utf8_ucfirst($str);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples