How to remove the last element from a string in php

醉折花枝作酒筹
Release: 2023-03-09 12:54:02
Original
2496 people have browsed it

php method to remove the last element of a string: 1. Use the substr function to return a part of the string, the syntax format is "substr(string,0,-1)"; 2. Use the rtrim function to remove The blank character or other predefined characters on the right side of the string, the syntax format is "rtrim (string, end character)".

How to remove the last element from a string in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

Method one:

substr($arr_str, 0, -1)
Copy after login

Detailed explanation: directly use the substr() function to trim the last character in reverse order;

Method 2:

rtrim($arr_str, ",")
Copy after login

Detailed explanation: rtrim ()Function syntax: string rtrim ( string $str [, string $character_mask ] )

rtrim — delete the blank characters (or other characters) at the end of the string

Note: the above After the method operates on the string, it returns the operation result and does not change the string itself! Remember to use a variable to receive the result!

Recommended: "2021 PHP interview questions summary (collection)" "php video tutorial

The above is the detailed content of How to remove the last element from 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