<html>
<body>
<?php
$article = "Hallo Warld";
$article = preg_replace('/a/','e',$article);
$article = preg_replace('/e/','o',$article);
?>

Hello World

<body></html>