<?php

function degistir($yazi) {
$degistir = str_replace("Öğretmen", "Mu2", $yazi);
$degistir = str_replace("Muallim", "Ö2", $degistir);
$degistir = str_replace("Ö2", "Öğretmen", $degistir);
$degistir2 = str_replace("Mu2", "Muallim", $degistir);
return $degistir2;
}

$yazi = "Kişi Öğretmen ve Muallim olacak";
echo degistir($yazi);
?>