API16

JString/strspn: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== UTF-8 aware alternative to strspn Find length of initial segment matching mask <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JStr...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
UTF-8 aware alternative to strspn Find length of initial segment matching mask
UTF-8 aware alternative to strspn Find length of initial segment matching mask


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JString/strspn|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JString/strspn}}
 
 


===Syntax===
===Syntax===
Line 54: Line 52:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JString/strspn|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JString/strspn}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=strspn
  category=strspn
  category=JString
  category=JString
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 02:08, 25 March 2017

Description

UTF-8 aware alternative to strspn Find length of initial segment matching mask



Syntax

static strspn($str, $mask, $start=NULL, $length=NULL)
Parameter Name Default Value Description
$str the haystack
$mask the mask
$start NULL start optional
$length NULL length optional

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

public static function strspn($str, $mask, $start = NULL, $length = NULL)
{
        jimport('phputf8.strspn');
        if ( $start === FALSE && $length === FALSE ) {
                return utf8_strspn($str, $mask);
        } else if ( $length === FALSE ) {
                return utf8_strspn($str, $mask, $start);
        } else {
                return utf8_strspn($str, $mask, $start, $length);
        }
}



Examples

Code Examples