Maybe this will give you a start:
<?php
$str = "This is a sting with a br tag.<br />And then we have a <p> tag and a </p> tag.";
$str = str_replace("<br />", "\n", $str);
$str = str_replace("<p>", "\n\n", $str);
$str = str_replace("</p>", "\n\n", $str);
echo "<pre>";
echo $str;
echo "</pre>"...