API15

API15:JString/substr replace

From Joomla! Documentation

Revision as of 22:25, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== UTF-8 aware substr_replace Replace text within a portion of a string <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JString/substr...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

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

[Edit Descripton]

Template: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] Template:SeeAlso:JString/substr replace

Examples

<CodeExamplesForm />