试试这个
<?php $text = "Hello <br /> Hello again <br> Hello again again <br/> Goodbye <BR>"; $breaks = array("<br />","<br>","<br/>"); $text = str_ireplace($breaks, "rn", $text); ?> <textarea><?php echo $text; ?></textarea>
试试这个
<?php $text = "Hello <br /> Hello again <br> Hello again again <br/> Goodbye <BR>"; $breaks = array("<br />","<br>","<br/>"); $text = str_ireplace($breaks, "rn", $text); ?> <textarea><?php echo $text; ?></textarea>