Categories: PHP

substr_replace – PHP String Functions

Syntax :

substr_replace ( string, replacement, start, length );

Description :

substr_replace() function will replace text within a part of a string. As the name suggest, it works similarly as its name.

The substr_replace()  is a built-in function in PHP. The index from the input string in which replacement has to be done needs to be passed in start parameter. Replacement tells the new string. If needed, we can also specify the length up to which replacement is needed.

In case of, an array of strings is passed as a parameter then replacements will occur on each string.

If the start parameter is a negative number and length is less than or equal to start, length becomes 0.

Note : This function is binary-safe.

Parameter :

  • string – This is a Required parameter. It is input string.
  • replacement – This is a Required parameter. This is a replacement value.
  • start – This is a Required parameter. Tells from where to start the replacement in input string.
    • +ve number – Start replacing at the position specified.
    • -ve number – Start replacing at the position specified from the end of a string.
    • 0 (zero) – Start replacing at the first character in string.
  • length – This is an Optional parameter. It tells how many characters is to be replaced in original input string. Default is same as the length of the string.
    • +ve number – Length of string to be replaced.
    • -ve number – How many characters should be left at end of string after replacing.
    • 0 (zero) – Perform insert at the starting of string, instead of replace.

Output :

This will return string or an array with replaced values depending upon the input values.


ChangeLog :

[table caption=”” width=”100%” colwidth=”50%|50%” colalign=”left|left”]
Version, Description
PHP 5.0 , The count parameter was added.
PHP 4.0.5, From this version most of the parameters can be an array.

[/table]


Related articles : str_ireplace(), preg_replace, str_replace().


substr_replace() – PHP Functions Example 1 :
<?php

$strExample = 'TUTORIALWITHUS';
echo "String is : $strExample<hr />\n";

/* These two examples replace all of $strExample with 'mines'. */echo substr_replace($strExample, 'mines', 0) . "<br />\n";
echo substr_replace($strExample, 'mines', 0, strlen($strExample)) . "<br />\n";

?>

In above example ,We have a string “TUTORIALWITHUS”. Now this function will replace the value in the var $strExample with value ‘mines’. Output of above code is as below:

String is : TUTORIALWITHUS<hr />
mines<br />
mines<br />

substr_replace() – PHP Functions Example 2 :
<?php

$strExample = 'TUTORIALWITHUS';
echo "String is : $strExample<hr />\n";

/* Insert 'mines' right at the beginning of $strExample. */echo substr_replace($strExample, 'mines', 0, 0) . "<br />\n";
?>

In above example ,We have a string “TUTORIALWITHUS”. Now this function will insert ‘mines’ at the beginning of string in var $strExample with value ‘mines’. Output of above code is as below:

String is : TUTORIALWITHUS<hr />
minesTUTORIALWITHUS<br />

substr_replace() – PHP Functions Example 3 :
<?php

$strExample = 'TUTORIALWITHUS';
echo "String is : $strExample<hr />\n";

/* These next two replace 'WITHUS' in $strExample mines 'mines'. */echo substr_replace($strExample, 'mines', 10, -1) . "<br />\n";
echo substr_replace($strExample, 'mines', -7, -1) . "<br />\n";

?>

In above example ,We have a string “TUTORIALWITHUS”. Now this function will replace the value in the var $strExample with value ‘mines’. Output of above code is as below:

String is : TUTORIALWITHUS<hr />
TUTORIALWIminesS<br />
TUTORIAminesS<br />

substr_replace() – PHP Functions Example 4 :
<?php

$strExample = 'TUTORIALWITHUS';
echo "String is : $strExample<hr />\n";

/* Delete 'WITHUS' from $strExample. */echo substr_replace($strExample, '', 10, -1) . "<br />\n";
?>

In above example ,We have a string “TUTORIALWITHUS”. Now this function will replace the value in the var $strExample with value ‘mines’. Output of above code is as below:

String is : TUTORIALWITHUS<hr />
TUTORIALWIS<br />

substr_replace() – PHP Functions Example 5 :  Array replacement
<?php
$replace = array("month-1","month-2","month-3");
echo implode("<br>",substr_replace($replace,'string',0,5));
?>

In above example ,We have an array of strings “month-1″,”month-2″,”month-3”. Now this function will replace the value in array month-1 with “string-1”, month-2 with “string-2” value in the string. Output of above code in the browser is as below:

string-1
string-2
string-3

substr_replace() – PHP Functions Example 6 :
<?php
$input1 = array('1-', '2-', '3-');
$replace1 = array("January","Febuary","March");
echo implode("<br>\n",substr_replace($input1, $replace1, 2,0)); 
?>

Output of above code in the browser is as below:

1-January<br>
2-Febuary<br>
3-March


jyoti rani

Recent Posts

Exploring the Best Toy Store in Noida: A Paradise for Kids and Collectors

Toys have always played a crucial role in childhood, fueling imagination, creativity, and learning. Whether you're looking for educational playsets,…

1 day ago

A Unique Toy Shopping Experience: The Best Toy Store in Delhi and Across India

Toys are an essential part of childhood, shaping creativity, learning, and fun-filled memories. Whether it’s the soft embrace of plush…

2 days ago

A World of Play: The Best Toy Shopping Experience in Noida

Toys are a gateway to imagination, creativity, and learning. Whether it’s a child’s first plush toy, a set of engaging…

3 days ago

The Ultimate Guide to Finding the Best Toy Shops in Gurgaon

Toys are more than just playthings; they help children explore, learn, and develop essential life skills. From interactive sensory toys…

4 days ago

The Ultimate Toy Shopping Guide: Finding the Best Toy Store in Noida

Toys are more than just playthings; they are tools that foster creativity, motor skills, and cognitive development in children. From…

5 days ago

Exploring the Best Toy Shop in Delhi: A Blend of Fun, Learning, and Creativity

Toys play an integral role in a child’s growth and development. They spark creativity, encourage learning, and provide endless hours…

1 week ago