substr() 函数返回字符串的一部分。
substr(
string,start,length)
Parameter | Description |
---|---|
string | Required. Specifies the string to return a part of |
start | Required. Specifies where to start in the string
|
length | Optional. Specifies the length of the returned string. Default is to the end of the string.
|
返回值: | 返回字符串的提取部分,失败时返回 FALSE,或者空字符串 |
---|---|
PHP 版本: | 4+ |
变更日志: | PHP 7.0 - 如果字符串=开始(以字符长计),它将返回一个空字符串。早期版本返回 FALSE。 PHP 5.2.2 - 5.2.6 - 如果开始具有负截断的位置,则返回 FALSE。其他版本从头开始获取字符串。 |
使用具有不同正负数的起始参数:
<?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>";
?>
亲自试一试 »
使用具有不同正数和负数的起始和长度参数:
<?php
echo substr("Hello world",0,10)."<br>";
echo substr("Hello world",1,8)."<br>";
echo substr("Hello world",0,5)."<br>";
echo substr("Hello world",6,6)."<br>";
echo substr("Hello world",0,-1)."<br>";
echo substr("Hello world",-10,-2)."<br>";
echo substr("Hello world",0,-6)."<br>";
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!