Php uses str_replace to implement the method of replacing br with the input box Press enter

Source: Internet
Author: User
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, if you want to use str_replace in php, you can refer to the following example to illustrate how to use str_replace in php to replace the br with the input box and share it with you for your reference. 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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.