API15

JString/ucfirst: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 45: Line 45:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=ucfirst
  category=ucfirst
  category=JString
  category=JString
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:10, 25 March 2017

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