API16:JString/strrpos
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
UTF-8 aware alternative to strrpos Finds position of last occurrence of a string
Syntax
static strrpos($str, $search, $offset=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | - string String being examined | |
| $search | - string String being searced for | |
| $offset | false |
Returns
mixed Number of characters before the last match or FALSE on failure
Defined in
libraries/joomla/utilities/string.php
Importing
jimport( 'joomla.utilities.string' );
Source Body
public static function strrpos($str, $search, $offset = false) { return utf8_strrpos($str, $search); }
[Edit See Also] SeeAlso:JString/strrpos
Examples
<CodeExamplesForm />
