Source Code:
(back to article)
<?php $string = "Hello, world!"; $replacement = "universe"; $start = 7; $length = 5; $newString = substr_replace($string, $replacement, $start, $length); echo $newString;
Result:
Report an issue