API15

JString/strrpos

From Joomla! Documentation

< API15:JString

The "API15" 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 strrpos Finds position of last occurrence of a string

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

strrpos($str, $search)
Parameter Name Default Value Description
$str - string String being examined
$search - string String being searced for

Returns[edit]

mixed Number of characters before the last match or FALSE on failure

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

function strrpos($str, $search){
        return utf8_strrpos($str, $search);
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]