JString/ucwords: Difference between revisions
From Joomla! Documentation
New page: ===Description===
UTF-8 aware alternative to ucwords Uppercase the first character of each word in a string
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Descr... |
m clean up |
||
| Line 2: | Line 2: | ||
UTF-8 aware alternative to ucwords Uppercase the first character of each word in a string | UTF-8 aware alternative to ucwords Uppercase the first character of each word in a string | ||
{{Description:JString/ucwords}} | |||
{{subst:Description:JString/ucwords}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 39: | Line 37: | ||
</source> | </source> | ||
{{subst:SeeAlso:JString/ucwords}} | |||
{{SeeAlso:JString/ucwords}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:28, 24 March 2017
Description
UTF-8 aware alternative to ucwords Uppercase the first character of each word in a string
{{subst:Description:JString/ucwords}}
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);
}
{{subst:SeeAlso:JString/ucwords}}
Examples
<CodeExamplesForm />