自定义截取两个汉字/符号/字母数字 之间字符串
2019-04-03 本文已影响0人
geeooooz
/**
* 自定义截取两个汉字/符号/字母数字 之间字符串
* 包括第二个字
* @param $str 字符串
* @param $f 第一个字
* @param $l 第二个字
*/
function cut_str($str,$f,$l){
$str = substr($str,strpos($str,$f)+3);
$strnlen = strpos($str,$l)+3;
$strEnd = substr($str,0,$strnlen);
return $strEnd;
}