<!DOCTYPE html>
<html>
<body>
<?php
echo str_ireplace("WORLD","Peter","Hello world!");
?>
<p>In this example, we search for the string "Hello World!", find the value "WORLD" and then replace the value with "Peter".</p>
</body>
</html>