时间:2021-07-01 10:21:17 帮助过:18人阅读
下面粘贴上此函数的实现
function intercept_str($str,$start,$end,$option = 1){ $strarr=explode($start,$str); $tem=$strarr[1]; if(empty($end)){ return $tem; }else{ $strarr=explode($end,$tem); if($option==1){ return $strarr[0]; } if($option==2){ return $start.$strarr[0]; } if($option==3){ return $strarr[0].$end; }else{ return $start.$strarr[0].$end; } } }
以上就是php截取函数intercept_str详解的详细内容,更多请关注Gxl网其它相关文章!