Merhabalar, bir scriptim mevcut ve yazilimcinin dedigine gore 5.3 ve ustunde ereg fonksiyonu kaldirildigi icin problem oluyor beyaz sayfa hatasi cikiyor ama php 5.2'de sorunsuz calisiyor. Dosyadaki kod asagidaki gibi, bu konu nasil duzenlemem lazim?

<?
function degistir($mesaj) {
$mesaj = preg_replace("'\(bkz: (.*)\)'Ui","(bkz: <a href=\"sozluk.php?t=\\1\"><b>\\1</b></a>)",$mesaj);
$mesaj = preg_replace("'\(gbkz: (.*)\)'Ui","<a href=\"sozluk.php?t=\\1\"><b>\\1</b></a>",$mesaj);
$mesaj = preg_replace("'\(u: (.*)\)'Ui","<a href=\"sozluk.php?t=\\1\" title=\"\\1\"><b>*</b></a>",$mesaj);
$yenimesaj=$mesaj;
return $yenimesaj;
}
?>
<form action="" method="POST">
<textarea cols="50" rows="10" name="msj"></textarea><br>
<input type="submit" value="gönder">
</form>
<?
if ($_POST) {
echo degistir($_POST['msj']);
}
?>