php如何去除url参数

来自:互联网
时间:2020-05-07
阅读:
免费资源网 - https://freexyz.cn/

php如何去除url参数

首先使用“parse_url()”函数将url拆分;然后重新组装拆分后数据中“scheme”,“host”和“path”即可。

 $rstr='';
    $tmparr=parse_url($url);
    $rstr=empty($tmparr['scheme'])?'http://':$tmparr['scheme'].'://';
    $rstr.=$tmparr['host'].$tmparr['path'];
    return $rstr;

或者使用这两个函数“strpos()”和“substr()"将“?”后边的参数进删除。

if ($pos = strpos($url, '?') !== false) {
    $url = substr($url, $pos, -1);
}
免费资源网 - https://freexyz.cn/
返回顶部
顶部