API15:JString/substr replace
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
UTF-8 aware substr_replace Replace text within a portion of a string
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
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); } }
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
