<?php $string = 'I am happy today.'; $replacement = 'very '; echo substr_replace($string, $replacement, 4, 0); // I am very happy today.