How to remove spaces at the beginning and end of a string in php

王林
Release: 2023-03-11 09:50:01
Original
1612 people have browsed it

The way PHP removes spaces at the beginning and end of a string is to pass the string as a parameter to the trim() function, such as [$str = "Hello World! ";trim($str);].

How to remove spaces at the beginning and end of a string in php

The operating environment of this article: windows10 system, php 7.3, thinkpad t480 computer.

If we want to delete the spaces at the beginning and end of a string, it is actually very simple. Because PHP has provided us with the ready-made function trim(). Let's briefly introduce the trim() function

trim() function removes blank characters or other predefined characters on both sides of the string and returns the modified string.

For example:

Remove spaces on both sides of the string:

<?php
$str = " Hello World! ";
echo "不使用 trim: " . $str;
echo "<br>";
echo "使用 trim: " . trim($str);
?>
Copy after login

Output result:

不使用 trim: Hello World!
使用 trim: Hello World!
Copy after login

Related recommendations: php video tutorial

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

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template