API16

JString/str ireplace

From Joomla! Documentation

< API16:JString
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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



Syntax[edit]

static 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]

public static 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);
        }
}



Examples[edit]

Code Examples[edit]