API15

API15:JString/ucwords

From Joomla! Documentation

Description

UTF-8 aware alternative to ucwords Uppercase the first character of each word in a string

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

ucwords($str)
Parameter Name Default Value Description
$str

Returns

string with first char of each word uppercase

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

function ucwords($str)
{
        jimport('phputf8.ucwords');
        return utf8_ucwords($str);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples