Home > Backend Development > PHP Problem > How to remove the first character from a string in php

How to remove the first character from a string in php

王林
Release: 2023-03-04 18:08:01
Original
3510 people have browsed it

php method to remove the first character in a string: You can use the substr() function to achieve this. The substr() function can return the extracted part of the string, return false if it fails, or return an empty string.

How to remove the first character from a string in php

The substr() function returns the extracted portion of the string, FALSE if failed, or an empty string.

(Recommended tutorial: php graphic tutorial)

Grammar:

substr(string,start,length)
Copy after login

(Recommended video tutorial: php video tutorial )

Example:

<?php
echo substr("Hello world",10)."<br>";
echo substr("Hello world",1)."<br>";
echo substr("Hello world",3)."<br>";
echo substr("Hello world",7)."<br>";
echo substr("Hello world",-1)."<br>";
echo substr("Hello world",-10)."<br>";
echo substr("Hello world",-8)."<br>";
echo substr("Hello world",-4)."<br>";
?>
Copy after login

Output result:

d
ello world
lo world
orld

d
ello world
lo world
orld
Copy after login

The above is the detailed content of How to remove the first character from a string in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template