Home  >  Article  >  Backend Development  >  How to remove a character in php rtrim()

How to remove a character in php rtrim()

青灯夜游
青灯夜游Original
2021-07-08 15:40:301714browse

In PHP, the rtrim() function can remove blank characters or other predefined characters on the right side of a string. Just set the "rtrim (string to be checked, character to be deleted)" statement. Removes a specified character from a string.

How to remove a character in php rtrim()

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

php rtrim removes one character

<?php
header("Content-type:text/html;charset=utf-8");
$str = "Hello World!";
echo &#39;原字符串:&#39;.$str . "<br>";
echo &#39;删除字符串右侧的一个字符!后:&#39;.rtrim($str,"!");
?>

Output:

原字符串:Hello World!
删除字符串右侧的一个字符!后:Hello World

Description:

rtrim() function removes whitespace characters on the right side of the string or other predefined characters.

Syntax

rtrim(string,charlist)
Parameters Description
string Required. Specifies the string to check.
charlist Optional. Specifies which characters are removed from the string. If this parameter is omitted, all of the following characters are removed:
  • "\0" - NULL
  • "\t" - Tab
  • "\n" - Newline
  • "\x0B" - vertical tab
  • "\r" - carriage return
  • " " - space

Return value: Return the modified string.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to remove a character in php rtrim(). 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