substr(staring,start,length)
staring(必须)目标字符串
start(必须)你想要的值从索引是多少的开始
length 你想要的值的长度
<?php
//当我们想要从字符串中“Hello world”取出world那么索引就是从6开始取,如果length不写,默认取到末尾。
echo substr("Hello world",6)
//最后输出的结果为world
?>
原文:https://www.cnblogs.com/00544--/p/15174012.html