时间:2021-07-01 10:21:17 帮助过:6人阅读
输出结果为:bcdef
$result = substr (“abcdef”, 1);
echo($result);
输出结果为:bcd
$result = substr (“abcdef”, 1,3);
echo($result);
输出结果为:f
$result = substr (“abcdef”, -1);
echo($result);
输出结果为:ef
$result = substr (“abcdef”, -2);
echo($result);
输出结果为:d
$result = substr (“abcdef”, -3,1);
echo($result);
http://www.bkjia.com/PHPjc/324732.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/324732.htmlTechArticle语法: substr(要截取的字符串, 开始位置 ,截取长度) 开始位置从0开始,如果想从第一个字符开始截取,则开始位置参数为0. 最后一个参数是...