API15

Difference between revisions of "JString/ltrim"

From Joomla! Documentation

< API15:JString
(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 (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JString/ltrim|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JString/ltrim}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 48: Line 48:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JString/ltrim|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JString/ltrim}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 63: Line 63:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 13:50, 12 May 2013

The "API15" 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 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

[<! removed edit link to red link >]

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

Syntax[edit]

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[edit]

string the trimmed string

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

function ltrim( $str, $charlist = FALSE )
{
        jimport('phputf8.trim');
        if ( $charlist === FALSE ) {
                return utf8_ltrim( $str );
        } else {
                return utf8_ltrim( $str, $charlist );
        }
}

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

Examples[edit]

<CodeExamplesForm />