How to remove spaces at the beginning and end of a string in php
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);].
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

WebStorm Mac version
Useful JavaScript development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
