Home  >  Article  >  Backend Development  >  How to remove spaces at the beginning and end of a string in php

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

王林
王林Original
2021-07-06 16:53:581611browse

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);
?>

Output result:

不使用 trim: Hello World!
使用 trim: Hello World!

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!

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