This article mainly introduces how to use str_replace in php to replace the br with the carriage return in the input box, and how to replace \ n with the br. For more information, see
This article describes how to use str_replace in php to replace the br with the carriage return in the input box, and how to replace \ n with the br. For more information, see
This example describes how to use bs/php/2013092356327.html "> str_replace in php to implement bs/javascript/2013080244832.html"> enter the box and press enter to replace the br. The specific implementation method is as follows:
When we use textarea, we will find that the carriage return and space are invisible. Therefore, we can use the str_replace function to replace \ n in php with br, for more information, see the following code:
The Code is as follows:
Function htmtocode ($ content ){
$ Content = str_replace ("n ","
", Str_replace (" "," ", $ content ));
Return $ content;
}
Replace spaces and press enter, which is equivalent to the following code:
The Code is as follows:
Function htmtocode ($ content ){
$ Content = str_replace ("", "", $ content );
$ Content = str_replace ("n ","
", $ Content );
Return $ content;
}
I hope this article will help you with PHP programming.
,