<?php

$texto="Texto <br /> texto texto texto <br /><br /><br /><br />";

$partes= explode("<br />",$texto);

for($i=0; $i<count($partes); $i++){

$len=strlen($texto);

if (substr($texto, -6)=="<br />"){

$texto=substr($texto, 0, ($len-6));

}

}

echo $texto;
