API16

JString/ucwords

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 ucwords Uppercase the first character of each word in a string



Syntax[edit]

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

Returns[edit]

string with first char of each word uppercase

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

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



Examples[edit]

Code Examples[edit]