How to remove the second character from a php string

青灯夜游
Release: 2023-03-13 22:14:01
Original
2277 people have browsed it

In PHP, you can use the substr_replace() function to remove the second character in the string. You only need to use this function to replace the second character with the empty character "''". The syntax is "substr_replace ($str, '', 1,1)".

How to remove the second character from a php string

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

In php, you can use the substr_replace() function to remove the second character from the string.

The substr_replace() function is a replacement function that can replace characters of a specified length starting from a specified position.

Syntax:

mixed substr_replace ( mixed $string , mixed $replacement , mixed $start [, mixed $length ] )
Copy after login
  • substr_replace() Replaces the substring qualified by the start and optional length parameters in a copy of string string using replacement.

  • If start is a positive number, replacement will start from the start position of string. If start is negative, the replacement will start at the start position from the bottom of string.

  • If the length parameter is set and is a positive number, it represents the length of the replaced substring in string. If set to a negative number, it represents the number of characters from the end of the substring to be replaced from the end of string. If this parameter is not provided, the default is strlen(string) (the length of the string). Of course, if length is 0, then the function of this function is to insert replacement at the start position of string.

If you want to remove only the second character, you only need to set start and length to 1, and replacements to the empty character "''".

<?php
header("Content-type:text/html;charset=utf-8");
$str = &#39;hello world&#39;;
$replace = &#39;&#39;;
echo substr_replace($str, &#39;&#39;, 1,1);
?>
Copy after login

How to remove the second character from a php string

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to remove the second character from a php string. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!