This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP String Functions

str_replace() - Replace Text Within a String

Hello Dolly!

<?php
// Replace Text Within a String
$x = "Hello World!";
echo str_replace("World", "Dolly", $x);
?>