JString/strrpos: Difference between revisions
From Joomla! Documentation
m removing red link to edit, no existant pages |
m preparing for archive only |
||
| Line 47: | Line 47: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=strrpos | category=strrpos | ||
category=JString | category=JString | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 01:09, 25 March 2017
Description
UTF-8 aware alternative to strrpos Finds position of last occurrence of a string
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
strrpos($str, $search)
| Parameter Name | Default Value | Description |
|---|---|---|
| $str | - string String being examined | |
| $search | - string String being searced for |
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
function strrpos($str, $search){
return utf8_strrpos($str, $search);
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples