JString/ltrim: Difference between revisions
From Joomla! Documentation
New page: ===Description===
UTF-8 aware replacement for ltrim() Strip whitespace (or other characters) from the beginning of a string Note: you only need to use this if you are supplying the charli... |
m clean up |
||
| Line 2: | Line 2: | ||
UTF-8 aware replacement for ltrim() Strip whitespace (or other characters) from the beginning of a string Note: you only need to use this if you are supplying the charlist optional arg and it contains UTF-8 characters. Otherwise ltrim will work normally on a UTF-8 string | UTF-8 aware replacement for ltrim() Strip whitespace (or other characters) from the beginning of a string Note: you only need to use this if you are supplying the charlist optional arg and it contains UTF-8 characters. Otherwise ltrim will work normally on a UTF-8 string | ||
{{Description:JString/ltrim}} | |||
{{subst:Description:JString/ltrim}} | |||
===Syntax=== | ===Syntax=== | ||
| Line 47: | Line 45: | ||
</source> | </source> | ||
{{subst:SeeAlso:JString/ltrim}} | |||
{{SeeAlso:JString/ltrim}} | |||
===Examples=== | ===Examples=== | ||
Revision as of 14:27, 24 March 2017
Description
UTF-8 aware replacement for ltrim() Strip whitespace (or other characters) from the beginning of a string Note: you only need to use this if you are supplying the charlist optional arg and it contains UTF-8 characters. Otherwise ltrim will work normally on a UTF-8 string
{{subst:Description:JString/ltrim}}
Syntax
static ltrim($str, $charlist=FALSE)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | the string to be trimmed | |
| $charlist | FALSE | the optional charlist of additional characters to trim |
Returns
string the trimmed string
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function ltrim($str, $charlist = FALSE)
{
jimport('phputf8.trim');
if ( $charlist === FALSE ) {
return utf8_ltrim( $str );
} else {
return utf8_ltrim( $str, $charlist );
}
}
{{subst:SeeAlso:JString/ltrim}}
Examples
<CodeExamplesForm />