JString/strpos: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
| Line 49: | Line 49: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=strpos | category=strpos | ||
category=JString | category=JString | ||
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 strpos Find position of first occurrence of a string
Syntax
static strpos($str, $search, $offset=FALSE)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | - string String being examined | |
| $search | - string String being searced for | |
| $offset | FALSE | - int Optional, specifies the position from which the search should be performed |
Returns
mixed Number of characters before the first match or FALSE on failure
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function strpos($str, $search, $offset = FALSE)
{
if ( $offset === FALSE ) {
return utf8_strpos($str, $search);
} else {
return utf8_strpos($str, $search, $offset);
}
}
Examples
Code Examples