Home Backend Development PHP Tutorial php trim函数 ltrim函数 rtrim函数的差异

php trim函数 ltrim函数 rtrim函数的差异

Jun 13, 2016 am 11:52 AM
ltrim str trim

php trim函数 ltrim函数 rtrim函数的区别

大家都知道php的trim()函数,ltrim()函数,rtrim()函数都可以去除掉空格,那么三者在用法上有什么不同的区别那?现在就来为大家一一介绍一下。
1.php trim()函数是去掉所有的空格(其实准确的来说是去掉字符串两次的所有空格),例如:
$str=" love 59biye ";<br>echo ("---".trim($str)."---");//输出---love 59biye---<br>2.php ltrim()函数是去掉字符串左侧的空格,例如:
$str=" love 59biye ";<br>echo ("---".ltrim($str)."---");//输出---love 59biye ---<br>3.php rtrim()函数是去掉字符串右侧的空格,例如:
$str=" love 59biye ";<br>echo ("---".ltrim($str)."---");//输出--- love 59biye---<br>好了,大家看出他们的具体的区别了吧。

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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Practical Tips: How to use the trim function in PHP to process Chinese spaces Practical Tips: How to use the trim function in PHP to process Chinese spaces Mar 27, 2024 am 11:27 AM

In PHP programming, spaces are often encountered when processing strings, including Chinese spaces. In actual development, we often use the trim function to remove spaces at both ends of a string, but the processing of Chinese spaces is relatively complicated. This article will introduce how to use the trim function in PHP to process Chinese spaces and provide specific code examples. First, let us understand the types of Chinese spaces. In Chinese, spaces include not only common English spaces (space), but also some other special spaces.

Guide to using trim() function in PHP Guide to using trim() function in PHP Feb 20, 2024 am 08:39 AM

Guide to using the trim() function in PHP The trim() function is very commonly used in PHP and is used to remove spaces or other specified characters at the beginning and end of a string. This article will introduce the use of trim() function in detail and provide specific code examples. 1. Function syntax The syntax of the trim() function is as follows: trim(string$str,string$character_mask=""):string This function accepts two parameters,

What is the function of trim function of solid state drive? What is the function of trim function of solid state drive? Nov 21, 2022 am 10:58 AM

The trim function of the solid-state drive is mainly to optimize the solid-state drive, solve the problem of slowdown and lifespan of the SSD after use, and improve the efficiency of the SSD by preparing data blocks for reuse. The Trim function is a function that almost all SSD solid state drives have. It is an ATA command. When the system confirms that the SSD supports Trim and deletes data, it does not notify the hard disk of the deletion command and only uses the Volume Bitmap to remember that the data here has been deleted. This enables faster data processing.

How to enable and disable TRIM on Windows 11 How to enable and disable TRIM on Windows 11 Sep 29, 2023 pm 03:13 PM

Using an SSD drive leaves you with the constant worry of losing your data and being unable to recover it. However, Windows allows you to achieve optimal performance by executing TRIM commands that write only necessary data without having to manage old data blocks. To do this, you need to make sure your SSD supports TRIM and enable it in your operating system. How to check if TRIM is enabled? In most cases, TRIM functionality is enabled by default in modern SSDs. But to make sure this is checked out, you can run the command with administrative rights. Just open an elevated command prompt, run the fsutil behavioral query DisableDeleteNotify command and your SSD will be listed. 0 means enabled, 1 means disabled. like

Use the strings.Trim function to remove the specified character set from the beginning and end of a string Use the strings.Trim function to remove the specified character set from the beginning and end of a string Jul 24, 2023 pm 04:27 PM

Use the strings.Trim function to remove the specified character set at the beginning and end of a string. In the Go language, the strings.Trim function is a very practical function that can remove the specified character set at the beginning and end of a string, making the string more tidy and standardized. This article will introduce how to use the strings.Trim function and show some code examples. First, let’s take a look at the prototype of the strings.Trim function: funcTrim(sstring,cutsetstri

Use the PHP function 'trim' to remove whitespace characters at both ends of a string Use the PHP function 'trim' to remove whitespace characters at both ends of a string Jul 25, 2023 pm 04:45 PM

The PHP function "trim" is a very useful string processing function. It can help us remove whitespace characters at both ends of the string, including spaces, tabs, newlines, etc. When writing PHP programs, we often encounter situations where user input needs to be cleaned. At this time, using "trim" can ensure that we get a clean string and avoid errors caused by irregular user input. Here is a simple code example showing how to use the "trim" function: &lt;?php

Python built-in type str source code analysis Python built-in type str source code analysis May 09, 2023 pm 02:16 PM

1The basic unit of Unicode computer storage is the byte, which is composed of 8 bits. Since English only consists of 26 letters plus a number of symbols, English characters can be stored directly in bytes. But other languages ​​(such as Chinese, Japanese, Korean, etc.) have to use multiple bytes for encoding due to the large number of characters. With the spread of computer technology, non-Latin character encoding technology continues to develop, but there are still two major limitations: no multi-language support: the encoding scheme of one language cannot be used in another language and there is no unified standard: for example There are many encoding standards in Chinese such as GBK, GB2312, GB18030, etc. Since the encoding methods are not unified, developers need to convert back and forth between different encodings, and many errors will inevitably occur.

What are the similarities and differences between __str__ and __repr__ in Python? What are the similarities and differences between __str__ and __repr__ in Python? Apr 29, 2023 pm 07:58 PM

What are the similarities and differences between __str__ and __repr__? We all know the representation of strings. Python's built-in function repr() can express objects in the form of strings to facilitate our identification. This is the "string representation". repr() obtains the string representation of an object through the special method __repr__. If __repr__ is not implemented, when we print an instance of a vector to the console, the resulting string may be. >>>classExample:pass>>>print(str(Example()))>>>

See all articles