Home >Backend Development >PHP Tutorial >php怎么去掉第一个字符

php怎么去掉第一个字符

PHPz
PHPzOriginal
2016-06-02 11:01:023268browse

php怎么去掉第一个字符

php怎么去掉第一个字符?

在php中可以使用substr函数去掉字符串中第一个字符;

substr() 函数返回字符串的一部分。

注释:如果 start 参数是负数且 length 小于或等于 start,则 length 为 0。

语法

substr(string,start,length)

示例:

<?php
// Positive numbers:
echo substr("Hello world",1)."<br>";

运行结果:

ello world

更多相关知识,请访问PHP中文网

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