JString/substr replace: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
===Syntax=== | ===Syntax=== | ||
| Line 51: | Line 51: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=substr_replace | category=substr_replace | ||
category=JString | category=JString | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:08, 25 March 2017
Description
UTF-8 aware substr_replace Replace text within a portion of a string
Syntax
static 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
public static 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);
}
}
Examples
Code Examples