API15:JString/substr replace

From Joomla! Documentation

Jump to: navigation, search

Contents

Description

UTF-8 aware substr_replace Replace text within a portion of a string

[Edit Descripton]

Description:JString/substr replace

Syntax

substr_replace($str, $repl, $start, $length=NULL)
Parameter Name Default Value Description
$str the haystack
$repl the replacement string
$start start
$length NULL length (optional)

Defined in

libraries/joomla/utilities/string.php

Importing

jimport( 'joomla.utilities.string' );

Source Body

function substr_replace($str, $repl, $start, $length = NULL )
{
        // loaded by library loader
        if ( $length === FALSE ) {
                return utf8_substr_replace($str, $repl, $start);
        } else {
                return utf8_substr_replace($str, $repl, $start, $length);
        }
}

[Edit See Also] SeeAlso:JString/substr replace

Examples


Personal tools