php echo substr('hello',1,-2);-2是什么意思 为什么结果是 el
发布网友
发布时间:2024-07-11 08:09
我来回答
共2个回答
热心网友
时间:2024-08-02 22:35
substr
是截取
字符串函数
substr(string,start,length)
h
e
l
l
o
对应的针分别为
0
1
2
3
4
-4
-3
-2
-1
0
substr('hello',1,-2);
start
是1
所以是从
e
开始截取长度为-2
。是截止到从后面开始数
对应-2
的字母结束
所以是
el
热心网友
时间:2024-08-02 22:34
substr是截取字符串,1是从左开始第2个(0开始),-2我理解应该是从字符串尾向左第3个。
截取"hello"从第2个字符开始到从尾左第3个的子字符串。