Home > Backend Development > PHP Problem > How to remove empty lines from string in php

How to remove empty lines from string in php

藏色散人
Release: 2023-03-14 22:10:01
Original
1853 people have browsed it

php method to remove empty lines from strings: 1. Create a PHP sample file; 2. Use the "function DeleteHtml($str){...}" method to remove empty lines or spaces in html. .

How to remove empty lines from string in php

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer

How to remove empty lines from strings in php?

PHP removes blank lines and blank functions in html

function DeleteHtml($str){  
                    $str = trim($str);  
                    $str = ereg_replace("\t","",$str);  
                    $str = ereg_replace("\r\n","",$str);  
                    $str = ereg_replace("\r","",$str);  
                    $str = ereg_replace("\n","",$str);  
                    return trim($str);  
                }
Copy after login

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to remove empty lines from string in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template