API16:JString/ucwords
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 ucwords Uppercase the first character of each word in a string
Syntax
static 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
public static function ucwords($str) { jimport('phputf8.ucwords'); return utf8_ucwords($str); }
[Edit See Also] SeeAlso:JString/ucwords
Examples
<CodeExamplesForm />
