fork download
  1. <?php
  2.  
  3. $texto="Texto <br /> texto texto texto <br /><br /><br /><br />";
  4.  
  5. $partes= explode("<br />",$texto);
  6.  
  7. for($i=0; $i<count($partes); $i++){
  8.  
  9. $len=strlen($texto);
  10.  
  11. if (substr($texto, -6)=="<br />"){
  12.  
  13. $texto=substr($texto, 0, ($len-6));
  14.  
  15. }
  16.  
  17. }
  18.  
  19. echo $texto;
  20.  
Success #stdin #stdout 0.02s 23724KB
stdin
Standard input is empty
stdout
Texto <br /> texto texto texto