How to Remove line breaks from strings in PHP

Source: Internet
Author: User
In PHP, sometimes we need to filter the line breaks of strings, such as the description information on the article page in the Tianya PHP blog. I directly cut the article content and filter out the html symbols, finally, we need to filter out the replications.

In PHP, sometimes we need to filter the line breaks of strings, such as the description information on the article page in the Tianya PHP blog. I directly cut the article content and filter out the html symbols, finally, we need to filter out the line breaks.
Below are some common methods to remove line breaks and PHP code. In fact, Tianya [phpha.com] wants to recommend a system constant [PHP_EOL].

 
 
  1. // 1st writing methods:
  2. Str_replace ("\ n", '', $ str );
  3. ?>
  4. // 2nd writing methods:
  5. Str_replace ("\ r \ n", '', $ str );
  6. ?>
  7. // 3rd writing methods:
  8. Preg_replace ("/\ s/", '', $ str );
  9. ?>

The following is a description:
First, let's talk about \ n, \ r, \ t
\ N soft carriage return:
In Windows, line breaks are displayed and returned to the beginning of the next line.
In Linux/unix, it only indicates line breaks, but does not return to the starting position of the next line.
\ R soft space:
In Linux/unix, return to the starting position of the row
In Mac OS, line breaks are displayed and returned to the start position of the next line, which is equivalent to \ n in Windows.
\ T hop (move to the next column)
Note:
They are valid in double quotes or delimiters, and are invalid in single quotes.
\ R \ n is generally used together to represent the carriage return key (in Linux and Unix) on the keyboard. \ n (in Windwos) can also be used only, and \ r is used to represent the carriage return in Mac OS!
\ T indicates the TAB key on the keyboard
Line Feed characters in the file:
Windows: \ n
Linux/unix: \ r \ n

The following code demonstrates three common methods for removing line breaks from strings in PHP:

 
 
  1. // 1) use the escape character function
  2. $ Str = str_replace (array ("/r/n", "/r", "/n"), '', $ str );
  3. ?>
  4. // 2) replace with a regular expression
  5. $ Str = preg_replace ('// s */', '', $ str );
  6. ?>
  7. // 3) use the PHP System constant [recommended]
  8. $ Str = str_replace (PHP_EOL, '', $ str );
  9. ?>

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.