JString/strpos
From Joomla! Documentation
< API16:JString
The "API16" 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 alternative to strpos Find position of first occurrence of a string
Syntax[edit]
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[edit]
mixed Number of characters before the first match or FALSE on failure
Defined in[edit]
libraries/joomla/utilities/string.php
Importing[edit]
jimport( 'joomla.utilities.string' );
Source Body[edit]
public static function strpos($str, $search, $offset = FALSE)
{
if ( $offset === FALSE ) {
return utf8_strpos($str, $search);
} else {
return utf8_strpos($str, $search, $offset);
}
}
Examples[edit]
Code Examples[edit]