How to remove the first character of a string in php?

青灯夜游
Release: 2023-03-02 20:04:01
Original
4722 people have browsed it

You can use the substr() function in PHP to remove the first character of a string. The syntax is "substr(string,start,length)", just set the start parameter to "1". For example, "substr("Hello world",1)" removes the leading character "h".

How to remove the first character of a string in php?

Example: php removes the first character of the string

<?php
echo substr("Hello world",1);
?>
Copy after login

Running result:

ello world
Copy after login

Description:

The substr() function returns a part of the string.

Note: If the start parameter is negative and length is less than or equal to start, length is 0.

Syntax

substr(string,start,length)
Copy after login

Parameters

string Required. Specifies a part of the string to be returned.

start Required. Specifies where in the string to begin.

  • Positive number - starts at the specified position in the string

  • Negative number - starts at the specified position from the end of the string

  • 0 - Start at the first character in the string

length optional. Specifies the length of the string to be returned. The default is until the end of the string.

  • Positive number - Return from the position of the start parameter

  • Negative number - Return from the end of the string

Return value: Returns the extracted part of the string, returns FALSE if it fails, or returns an empty string.

In PHP 5.2.2 to 5.2.6 versions, if the start parameter indicates a negative truncation or an out-of-bounds position, FALSE is returned. Other versions get the string starting at the start position.

Recommended related tutorials: PHP tutorial!

The above is the detailed content of How to remove the first character of 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