API15

JString/str ireplace

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 str_ireplace Case-insensitive version of str_replace

[<! removed edit link to red link >]

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

Syntax[edit]

str_ireplace($search, $replace, $str, $count=NULL)
Parameter Name Default Value Description
$search string to search
$replace existing string to replace
$str new string to replace with
$count NULL optional count value to be passed by referene

Defined in[edit]

libraries/joomla/utilities/string.php

Importing[edit]

jimport( 'joomla.utilities.string' );

Source Body[edit]

function str_ireplace($search, $replace, $str, $count = NULL)
{
        jimport('phputf8.str_ireplace');
        if ( $count === FALSE ) {
                return utf8_ireplace($search, $replace, $str);
        } else {
                return utf8_ireplace($search, $replace, $str, $count);
        }
}

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

Examples[edit]

Code Examples[edit]