search
HomeBackend DevelopmentPHP ProblemHow to remove spaces from string in php?

php method to remove spaces from a string: 1. Use the trim() function to remove spaces on both sides of the string; 2. Use the rtrim() and ltrim() functions to remove spaces on both sides of the string; 3. Use "str_replace(' ','', string)" to remove spaces from the string.

How to remove spaces from string in php?

Recommended: "PHP Video Tutorial"

Method 1: trim() or rtrim() and ltrim() function removes spaces at both ends of a string

trim() function removes whitespace characters or other predefined characters on both sides of a string.

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$str = " PHP去除字符串的空格! ";
echo "文本为:" . trim($str);
?>

ltrim() - Removes whitespace characters or other predefined characters on the left side of a string.

rtrim() - Removes whitespace characters or other predefined characters on the right side of the string.

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$str = " PHP去除字符串的空格! ";
echo "文本为:" . rtrim(ltrim($str));
?>

Method 2: Use str_replace() function to remove spaces

<?php
echo str_replace(&#39; &#39;, &#39;&#39;, &#39;ab    ab&#39;);
//输出 "abab&#39;
?>

Method 3: Use strtr() function to remove spaces

<?php
echo strtr(&#39;ab    ab&#39;, array(&#39; &#39;=>&#39;&#39;));
// 输出 "abab"
?>

Method 4: Use regular expressions to remove spaces

<?php
echo preg_replace(&#39;# #&#39;, &#39;&#39;, &#39;ab     ab&#39;);
//输出 "abab"
?>

For more programming-related knowledge, please visit: Introduction to Programming! !

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

Statement
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.