PHP Ajouter une chaîne à l'intérieur de la chaîne en position

<?php

$string = 'I am happy today.';
$replacement = 'very ';

echo substr_replace($string, $replacement, 4, 0); // I am very happy today.
Wandering Warbler