标签: php
我有一个字符串
$string = "abcdefg";
如果我只知道“d”= 3的位置,我如何使用substr获取“bcd”
我试过了
$string = substr($string,3,-3)
但这不起作用。