Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-Replace-text-within-a-string-using-str_replace()-function-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
echo str_replace("world", "Dolly", "Hello world!");
?> 
 
</body>
</html>

Output :